diff --git a/crates/oxc_linter/src/options.rs b/crates/oxc_linter/src/options.rs index 1f9b94472..0ed1732a3 100644 --- a/crates/oxc_linter/src/options.rs +++ b/crates/oxc_linter/src/options.rs @@ -24,7 +24,6 @@ pub struct LintOptions { pub filter: Vec<(AllowWarnDeny, String)>, pub config_path: Option, pub fix: bool, - pub timing: bool, pub import_plugin: bool, pub jsdoc_plugin: bool, pub jest_plugin: bool, @@ -39,7 +38,6 @@ impl Default for LintOptions { filter: vec![(AllowWarnDeny::Deny, String::from("correctness"))], config_path: None, fix: false, - timing: false, import_plugin: false, jsdoc_plugin: false, jest_plugin: false, @@ -71,12 +69,6 @@ impl LintOptions { self } - #[must_use] - pub fn with_timing(mut self, yes: bool) -> Self { - self.timing = yes; - self - } - #[must_use] pub fn with_import_plugin(mut self, yes: bool) -> Self { self.import_plugin = yes;