diff --git a/crates/oxc_linter/src/rules/eslint/curly.rs b/crates/oxc_linter/src/rules/eslint/curly.rs index cf7287e5cbcc4..5c4b2cdede105 100644 --- a/crates/oxc_linter/src/rules/eslint/curly.rs +++ b/crates/oxc_linter/src/rules/eslint/curly.rs @@ -90,6 +90,7 @@ declare_oxc_lint!( /// } /// ``` Curly, + eslint, style, fix ); @@ -1879,5 +1880,5 @@ fn test() { None, ), ]; - Tester::new(Curly::NAME, Curly::CATEGORY, pass, fail).expect_fix(fix).test_and_snapshot(); + Tester::new(Curly::NAME, Curly::PLUGIN, pass, fail).expect_fix(fix).test_and_snapshot(); }