Skip to content

Commit c5ab142

Browse files
committed
feat(linter): implement typescript/member-ordering
1 parent 79fe3b4 commit c5ab142

File tree

8 files changed

+4842
-1
lines changed

8 files changed

+4842
-1
lines changed

Cargo.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/oxc_linter/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ json-strip-comments = { workspace = true }
5858
language-tags = { workspace = true }
5959
lazy-regex = { workspace = true }
6060
memchr = { workspace = true }
61+
natord = { workspace = true }
6162
nodejs-built-in-modules = { workspace = true }
6263
papaya = { workspace = true }
6364
phf = { workspace = true, features = ["macros"] }

crates/oxc_linter/src/generated/rule_runner_impls.rs

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/oxc_linter/src/generated/rules_enum.rs

Lines changed: 25 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/oxc_linter/src/rules.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,7 @@ pub(crate) mod typescript {
230230
pub mod dot_notation;
231231
pub mod explicit_function_return_type;
232232
pub mod explicit_module_boundary_types;
233+
pub mod member_ordering;
233234
pub mod no_array_delete;
234235
pub mod no_base_to_string;
235236
pub mod no_confusing_non_null_assertion;

0 commit comments

Comments
 (0)