mirror of
https://github.com/danbulant/oxc
synced 2026-05-19 04:08:41 +00:00
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:
parent
e632a7b158
commit
0b04288139
1 changed files with 2 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue