mirror of
https://github.com/danbulant/oxc
synced 2026-05-25 04:42:10 +00:00
10 lines
218 B
Rust
10 lines
218 B
Rust
use std::path::PathBuf;
|
|
|
|
#[derive(Debug, Default)]
|
|
pub struct LintOptions {
|
|
pub paths: Vec<PathBuf>,
|
|
pub fix: bool,
|
|
pub ignore_path: PathBuf,
|
|
pub no_ignore: bool,
|
|
pub ignore_pattern: Vec<String>,
|
|
}
|