pub trait LintRule: Debug + Send + Sync {
    fn lint_stylesheet(&mut self, stylesheet: &Stylesheet);
}
Expand description

A lint rule.

Implementation notes

Must report error to [swc_common::HANDLER]

Required Methods

Implementations on Foreign Types

This preserves the order of errors.

Implementors