mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 20:32:10 +00:00
chore(linter): move all import plugin rules to nursery (#1113)
This commit is contained in:
parent
407e406f86
commit
103268be98
4 changed files with 4 additions and 4 deletions
|
|
@ -32,7 +32,7 @@ declare_oxc_lint!(
|
|||
/// import bar from './bar' // no default export found in ./bar
|
||||
/// ```
|
||||
Default,
|
||||
correctness
|
||||
nursery
|
||||
);
|
||||
|
||||
impl Rule for Default {
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ declare_oxc_lint!(
|
|||
/// ```javascript
|
||||
/// ```
|
||||
Named,
|
||||
correctness
|
||||
nursery
|
||||
);
|
||||
|
||||
impl Rule for Named {
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ declare_oxc_lint!(
|
|||
/// import { b } from './dep-b.js' // reported: Dependency cycle detected.
|
||||
/// ```
|
||||
NoCycle,
|
||||
pedantic
|
||||
nursery
|
||||
);
|
||||
|
||||
impl Rule for NoCycle {
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ declare_oxc_lint!(
|
|||
/// const foo = require('./foo')
|
||||
/// ```
|
||||
NoSelfImport,
|
||||
correctness
|
||||
nursery
|
||||
);
|
||||
|
||||
impl Rule for NoSelfImport {
|
||||
|
|
|
|||
Loading…
Reference in a new issue