From 0ec12cf38db367efd7cacf92d40f6f2315699895 Mon Sep 17 00:00:00 2001 From: Boshen Date: Sun, 7 Jul 2024 19:19:09 +0800 Subject: [PATCH] chore(linter): change no-negation-in-equality-check to pedantic --- .../src/rules/unicorn/no_negation_in_equality_check.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/oxc_linter/src/rules/unicorn/no_negation_in_equality_check.rs b/crates/oxc_linter/src/rules/unicorn/no_negation_in_equality_check.rs index 1ea39e6646571..06e98bfba33ac 100644 --- a/crates/oxc_linter/src/rules/unicorn/no_negation_in_equality_check.rs +++ b/crates/oxc_linter/src/rules/unicorn/no_negation_in_equality_check.rs @@ -45,7 +45,7 @@ declare_oxc_lint!( /// if (!(foo === bar)) {} /// ``` NoNegationInEqualityCheck, - correctness, + pedantic, ); impl Rule for NoNegationInEqualityCheck {