A linting result for a single linting rule match.

interface UnusedDefinitionResult {
    certainty: LintingCertainty;
    quickFix?: LintQuickFix[];
    range: SourceRange;
    variableName?: string;
}

Hierarchy (View Summary)

Hierarchy-Diagram

UML class diagram of UnusedDefinitionResult

Properties

certainty: LintingCertainty
quickFix?: LintQuickFix[]

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

variableName?: string