Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(linter): create the import/order rule #7903

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
2 changes: 2 additions & 0 deletions crates/oxc_linter/src/rules.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ mod import {
pub mod no_namespace;
pub mod no_self_import;
pub mod no_webpack_loader_syntax;
pub mod order;
pub mod unambiguous;
}

Expand Down Expand Up @@ -657,6 +658,7 @@ oxc_macros::declare_all_lint_rules! {
import::no_named_as_default_member,
import::no_self_import,
import::no_webpack_loader_syntax,
import::order,
import::unambiguous,
jest::consistent_test_it,
jest::expect_expect,
Expand Down
Loading
Loading