oxc/crates/oxc_cli/src/lib.rs
Boshen fca6e02f84
refactor(cli): remove the codeowners feature (#2448)
I should've done a better job at selecting features. Every feature
requires more than just code to get it right.

linting by codeowners' files sounds good on paper but actually not that
useful.
2024-02-20 12:54:16 +08:00

14 lines
214 B
Rust

mod command;
mod format;
mod lint;
mod result;
mod runner;
mod walk;
pub use crate::{
command::*,
format::FormatRunner,
lint::LintRunner,
result::{CliRunResult, LintResult},
runner::Runner,
};