Skip to content

Commit

Permalink
Fixed clippy issue
Browse files Browse the repository at this point in the history
  • Loading branch information
tapanprakasht committed Oct 22, 2024
1 parent f712201 commit 0bcc3ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/oxc_linter/src/config/rules.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ impl IntoIterator for OxlintRules {
}

impl OxlintRules {
#[allow(clippy::option_if_let_else)]
#[allow(clippy::option_if_let_else, clippy::print_stdout)]
pub(crate) fn override_rules(&self, rules_for_override: &mut RuleSet, all_rules: &[RuleEnum]) {
use itertools::Itertools;
let mut rules_to_replace: Vec<RuleWithSeverity> = vec![];
Expand Down

0 comments on commit 0bcc3ad

Please sign in to comment.