diff --git a/apps/oxlint/src/runner.rs b/apps/oxlint/src/runner.rs deleted file mode 100644 index 5ee82c5689a1f..0000000000000 --- a/apps/oxlint/src/runner.rs +++ /dev/null @@ -1,15 +0,0 @@ -use std::io::Write; - -use oxc_linter::ExternalLinter; - -use crate::cli::CliRunResult; - -/// A trait for exposing functionality to the CLI. -pub trait Runner { - type Options; - - fn new(matches: Self::Options, external_linter: Option) -> Self; - - /// Executes the runner, providing some result to the CLI. - fn run(self, stdout: &mut dyn Write) -> CliRunResult; -}