oxc/editors/vscode/server/src/options.rs

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>,
}