pub trait Linter: Send + Sync { // Required method fn lint(&mut self, document: &Document) -> Vec<Lint>; }