oxc/apps/oxlint/src/lib.rs

15 lines
217 B
Rust

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