Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 0 additions & 1 deletion crates/oxc_linter/src/context/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,6 @@ const PLUGIN_PREFIXES: phf::Map<&'static str, &'static str> = phf::phf_map! {
"promise" => "eslint-plugin-promise",
"react_perf" => "eslint-plugin-react-perf",
"react" => "eslint-plugin-react",
"tree_shaking" => "eslint-plugin-tree-shaking",
"typescript" => "typescript-eslint",
"unicorn" => "eslint-plugin-unicorn",
"vitest" => "eslint-plugin-vitest",
Expand Down
5 changes: 0 additions & 5 deletions crates/oxc_linter/src/rules.rs
Original file line number Diff line number Diff line change
Expand Up @@ -478,10 +478,6 @@ mod jsdoc {
pub mod require_yields;
}

mod tree_shaking {
pub mod no_side_effects_in_initialization;
}

mod promise {
pub mod avoid_new;
pub mod catch_or_return;
Expand Down Expand Up @@ -830,7 +826,6 @@ oxc_macros::declare_all_lint_rules! {
react_perf::jsx_no_new_function_as_prop,
react_perf::jsx_no_new_object_as_prop,
security::api_keys,
tree_shaking::no_side_effects_in_initialization,
typescript::adjacent_overload_signatures,
typescript::array_type,
typescript::ban_ts_comment,
Expand Down
Loading