pub trait Lint { // Required methods fn name(&self) -> String; fn run(&mut self, exprs: &[Expr]); }
A unique name for the lint.
Runs after the parsing pass.