We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a8edfd commit ef2bf9aCopy full SHA for ef2bf9a
apps/oxlint/src/lint.rs
@@ -312,10 +312,9 @@ impl LintRunner {
312
.filter(|path| !ignore_matcher.should_ignore(Path::new(path)))
313
.collect::<Vec<Arc<OsStr>>>();
314
315
- let linter =
316
- Linter::new(LintOptions::default(), config_store.clone(), external_linter)
317
- .with_fix(fix_options.fix_kind())
318
- .with_report_unused_directives(report_unused_directives);
+ let linter = Linter::new(LintOptions::default(), config_store.clone(), external_linter)
+ .with_fix(fix_options.fix_kind())
+ .with_report_unused_directives(report_unused_directives);
319
320
let number_of_files = files_to_lint.len();
321
0 commit comments