Skip to content

Commit

Permalink
feat(linter): move import/named to nursery (#8068)
Browse files Browse the repository at this point in the history
There are race conditions in the runtime which may cause the module to
not find any exports from `exported_bindings_from_star_export`.
  • Loading branch information
Boshen authored Dec 23, 2024
1 parent e632a7b commit 0b04288
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/oxc_linter/src/rules/import/named.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 0b04288

Please sign in to comment.