Skip to content

Commit

Permalink
feat(linter/eslint): implement func-names (#4618)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sysix authored Aug 4, 2024
1 parent e78cba6 commit c296bc3
Show file tree
Hide file tree
Showing 3 changed files with 982 additions and 0 deletions.
2 changes: 2 additions & 0 deletions crates/oxc_linter/src/rules.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ mod eslint {
pub mod default_param_last;
pub mod eqeqeq;
pub mod for_direction;
pub mod func_names;
pub mod getter_return;
pub mod guard_for_in;
pub mod max_classes_per_file;
Expand Down Expand Up @@ -458,6 +459,7 @@ oxc_macros::declare_all_lint_rules! {
eslint::default_param_last,
eslint::eqeqeq,
eslint::for_direction,
eslint::func_names,
eslint::getter_return,
eslint::guard_for_in,
eslint::max_classes_per_file,
Expand Down
Loading

0 comments on commit c296bc3

Please sign in to comment.