mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
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.
14 lines
214 B
Rust
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,
|
|
};
|