A linting result for a single linting rule match.

interface LintingResult {
    certainty: LintingResultCertainty;
    involvedId: undefined | NodeId;
    quickFix?: LintQuickFix[];
}

Hierarchy (View Summary)

Hierarchy-Diagram

UML class diagram of LintingResult

Properties

The certainty of the linting result.

involvedId: undefined | NodeId

The node ID involved in this linting result, if applicable.

quickFix?: LintQuickFix[]

If available, what to do to fix the linting result.