Skip to content

Commit 92df135

Browse files
feat(linter): adds jsx-a11y/no-static-element-interactions rule
* includes codegen for npm `aria-query` & `axobject-query` data required for this and other jsx-a11y rule implementations
1 parent da9af14 commit 92df135

25 files changed

+2802
-5
lines changed

Cargo.lock

Lines changed: 21 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ multiple_crate_versions = "allow"
105105
# publish = true
106106
oxc = { version = "0.94.0", path = "crates/oxc" }
107107
oxc_allocator = { version = "0.94.0", path = "crates/oxc_allocator" }
108+
oxc_aria_query = { version = "0.94.0", path = "crates/oxc_aria_query" }
108109
oxc_ast = { version = "0.94.0", path = "crates/oxc_ast" }
109110
oxc_ast_macros = { version = "0.94.0", path = "crates/oxc_ast_macros" }
110111
oxc_ast_visit = { version = "0.94.0", path = "crates/oxc_ast_visit" }

crates/oxc_aria_query/Cargo.toml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[package]
2+
name = "oxc_aria_query"
3+
version = "0.94.0"
4+
authors.workspace = true
5+
categories.workspace = true
6+
homepage.workspace = true
7+
keywords.workspace = true
8+
license.workspace = true
9+
repository.workspace = true
10+
description.workspace = true
11+
edition.workspace = true
12+
rust-version.workspace = true
13+
14+
[lib]
15+
test = false
16+
doctest = false
17+
18+
[dependencies]
19+
phf = { workspace = true, features = ["macros"] }
20+
21+
[lints]
22+
workspace = true

0 commit comments

Comments
 (0)