From 1ca7b58c8c30e12114c56d44897b062fbd69d21d Mon Sep 17 00:00:00 2001 From: camc314 <18101008+camc314@users.noreply.github.com> Date: Tue, 31 Mar 2026 21:26:26 +0000 Subject: [PATCH] feat(linter/dot-notation): move rule from nursery to style (#20918) This rule has been published for ~6 weeks, and we've had little to no reports highlighting issues, so this PR moves it out of nursery to the style category --- crates/oxc_linter/src/rules/typescript/dot_notation.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/oxc_linter/src/rules/typescript/dot_notation.rs b/crates/oxc_linter/src/rules/typescript/dot_notation.rs index d65fed27cdcd9..e90c3dc535504 100644 --- a/crates/oxc_linter/src/rules/typescript/dot_notation.rs +++ b/crates/oxc_linter/src/rules/typescript/dot_notation.rs @@ -63,7 +63,7 @@ declare_oxc_lint!( /// ``` DotNotation(tsgolint), typescript, - nursery, + style, config = DotNotationConfig, );