diff --git a/crates/oxc_linter/src/rules/eslint/no_fallthrough.rs b/crates/oxc_linter/src/rules/eslint/no_fallthrough.rs index 25cd70c8a..299cd1051 100644 --- a/crates/oxc_linter/src/rules/eslint/no_fallthrough.rs +++ b/crates/oxc_linter/src/rules/eslint/no_fallthrough.rs @@ -74,7 +74,7 @@ declare_oxc_lint!( /// Disallow fallthrough of `case` statements /// NoFallthrough, - correctness + pedantic // Fall through code are still incorrect. ); impl Rule for NoFallthrough {