A linting result for a single linting rule match.

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

Hierarchy (View Summary)

Hierarchy-Diagram

UML class diagram of SeededRandomnessResult

Properties

The certainty of the linting result.

function: 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.