From b99ee373268492d9fc62917e05bafa1fb80a782c Mon Sep 17 00:00:00 2001 From: "Alexander S." Date: Sun, 15 Dec 2024 05:26:47 +0100 Subject: [PATCH] refactor(linter): move rule "no-restricted-imports" to nursery (#7897) many options are not supported: https://github.com/oxc-project/oxc/issues/7810#issuecomment-2543182046 --- crates/oxc_linter/src/rules/eslint/no_restricted_imports.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/oxc_linter/src/rules/eslint/no_restricted_imports.rs b/crates/oxc_linter/src/rules/eslint/no_restricted_imports.rs index 1ef31236f44d6..9a881709cf4c1 100644 --- a/crates/oxc_linter/src/rules/eslint/no_restricted_imports.rs +++ b/crates/oxc_linter/src/rules/eslint/no_restricted_imports.rs @@ -69,7 +69,7 @@ declare_oxc_lint!( /// export { foo } from "bar"; /// ``` NoRestrictedImports, - style, + nursery, ); impl Rule for NoRestrictedImports {