pub trait Linter: Send + Sync + Debug { // Required method fn name(&self) -> &'static str; }
Represents a linter.
Returns the name of the linter.