chore(linter): change no-negation-in-equality-check to pedantic

This commit is contained in:
Boshen 2024-07-07 19:19:09 +08:00
parent 94bac93550
commit 0ec12cf38d
No known key found for this signature in database
GPG key ID: 67715A371E534061

View file

@ -45,7 +45,7 @@ declare_oxc_lint!(
/// if (!(foo === bar)) {}
/// ```
NoNegationInEqualityCheck,
correctness,
pedantic,
);
impl Rule for NoNegationInEqualityCheck {