A linting result for a single linting rule match.

interface DeadCodeResult {
    certainty: LintingResultCertainty;
    quickFix?: LintQuickFix[];
    range: SourceRange;
}

Hierarchy (View Summary)

Hierarchy-Diagram

UML class diagram of DeadCodeResult

Properties

quickFix?: LintQuickFix[]

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