#[derive(Debug, Clone)]
pub struct ProcessOptions<'a> {
pub remove_todo: bool,
pub remove_fixme: bool,
pub remove_doc: bool,
pub ignore_patterns: &'a Option<Vec<String>>,
pub output_dir: &'a Option<String>,
pub disable_default_ignores: bool,
pub dry_run: bool,
}