A linting result for a single linting rule match.

interface AbsoluteFilePathResult {
    certainty: LintingResultCertainty;
    filePath: string;
    involvedId: undefined | NodeId;
    quickFix?: LintQuickFix[];
    range: SourceRange;
}

Hierarchy (View Summary)

Hierarchy-Diagram

UML class diagram of AbsoluteFilePathResult

Properties

The certainty of the linting result.

filePath: string
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.