From f0af9653b342670fdd2cb5229a0ed1f5df566ea5 Mon Sep 17 00:00:00 2001 From: connorshea <2977353+connorshea@users.noreply.github.com> Date: Fri, 13 Feb 2026 11:30:13 +0000 Subject: [PATCH] feat(linter): Move `jsx-a11y/no-static-element-interactions` rule out of the nursery. (#19355) The issues with this rule were fixed by #17817 a few weeks ago, and it should be safe to mark it as a correctness rule again. I've tested it briefly on mastadon and another decently-sized codebase, and it appears to perform identically now. --- .../src/rules/jsx_a11y/no_static_element_interactions.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/oxc_linter/src/rules/jsx_a11y/no_static_element_interactions.rs b/crates/oxc_linter/src/rules/jsx_a11y/no_static_element_interactions.rs index 52d16fa2124c9..a0c810543e9d2 100644 --- a/crates/oxc_linter/src/rules/jsx_a11y/no_static_element_interactions.rs +++ b/crates/oxc_linter/src/rules/jsx_a11y/no_static_element_interactions.rs @@ -79,7 +79,7 @@ declare_oxc_lint!( /// ``` NoStaticElementInteractions, jsx_a11y, - nursery, + correctness, config = NoStaticElementInteractionsConfig, );