Trait x_lint::Linter[][src]

pub trait Linter: Send + Sync + Debug {
    fn name(&self) -> &'static str;
}
Expand description

Represents a linter.

Required methods

Returns the name of the linter.

Implementors