feat(linter): move import/named to nursery (#8068)

There are race conditions in the runtime which may cause the module to
not find any exports from `exported_bindings_from_star_export`.
This commit is contained in:
Boshen 2024-12-23 20:29:43 +08:00 committed by GitHub
parent e632a7b158
commit 0b04288139
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -77,7 +77,8 @@ declare_oxc_lint!(
/// import { SomeNonsenseThatDoesntExist } from 'react'
/// ```
Named,
correctness
nursery // There are race conditions in the runtime which may cause the module to
// not find any exports from `exported_bindings_from_star_export`.
);
impl Rule for Named {