chore(linter): move no-redeclare to nursery

This commit is contained in:
Boshen 2023-09-29 23:46:52 +13:00
parent 384c3fc00f
commit 39e4efb2c0
No known key found for this signature in database
GPG key ID: 234DA6A7079C6801

View file

@ -58,7 +58,7 @@ declare_oxc_lint!(
/// var a = 10;
/// ```
NoRedeclare,
correctness
nursery // There are false positives within TypeScript files (e.g. redeclare on interface)
);
impl Rule for NoRedeclare {