Trait x_lint::Linter

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

Represents a linter.

Required Methods§

source

fn name(&self) -> &'static str

Returns the name of the linter.

Implementors§