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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions crates/oxc_linter/src/generated/rule_runner_impls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -873,6 +873,11 @@ impl RuleRunner for crate::rules::eslint::no_void::NoVoid {
const RUN_FUNCTIONS: RuleRunFunctionsImplemented = RuleRunFunctionsImplemented::Run;
}

impl RuleRunner for crate::rules::eslint::no_warning_comments::NoWarningComments {
const NODE_TYPES: Option<&AstTypesBitset> = None;
const RUN_FUNCTIONS: RuleRunFunctionsImplemented = RuleRunFunctionsImplemented::RunOnce;
}

impl RuleRunner for crate::rules::eslint::no_with::NoWith {
const NODE_TYPES: Option<&AstTypesBitset> =
Some(&AstTypesBitset::from_types(&[AstType::WithStatement]));
Expand Down
2 changes: 2 additions & 0 deletions crates/oxc_linter/src/rules.rs
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ pub(crate) mod eslint {
pub mod no_useless_rename;
pub mod no_var;
pub mod no_void;
pub mod no_warning_comments;
pub mod no_with;
pub mod operator_assignment;
pub mod prefer_destructuring;
Expand Down Expand Up @@ -792,6 +793,7 @@ oxc_macros::declare_all_lint_rules! {
eslint::no_useless_rename,
eslint::no_var,
eslint::no_void,
eslint::no_warning_comments,
eslint::no_with,
eslint::operator_assignment,
eslint::prefer_template,
Expand Down
Loading
Loading