Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 32 additions & 32 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/oxc_formatter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_formatter"
version = "0.25.0"
version = "0.26.0"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down
4 changes: 4 additions & 0 deletions crates/oxc_linter/src/rules.rs
Original file line number Diff line number Diff line change
Expand Up @@ -555,6 +555,7 @@ pub(crate) mod jsx_a11y {
pub mod html_has_lang;
pub mod iframe_has_title;
pub mod img_redundant_alt;
pub mod interactive_supports_focus;
pub mod label_has_associated_control;
pub mod lang;
pub mod media_has_caption;
Expand All @@ -563,6 +564,7 @@ pub(crate) mod jsx_a11y {
pub mod no_aria_hidden_on_focusable;
pub mod no_autofocus;
pub mod no_distracting_elements;
pub mod no_interactive_element_to_noninteractive_role;
pub mod no_noninteractive_tabindex;
pub mod no_redundant_roles;
pub mod no_static_element_interactions;
Expand Down Expand Up @@ -993,10 +995,12 @@ oxc_macros::declare_all_lint_rules! {
jsx_a11y::html_has_lang,
jsx_a11y::iframe_has_title,
jsx_a11y::img_redundant_alt,
jsx_a11y::interactive_supports_focus,
jsx_a11y::label_has_associated_control,
jsx_a11y::lang,
jsx_a11y::media_has_caption,
jsx_a11y::mouse_events_have_key_events,
jsx_a11y::no_interactive_element_to_noninteractive_role,
jsx_a11y::no_noninteractive_tabindex,
jsx_a11y::no_static_element_interactions,
jsx_a11y::no_access_key,
Expand Down
Loading