@eagleoutice/flowr - v2.15.8
    Preparing search index...

    A linting result for a single linting rule match.

    interface UnescapedArgumentsResult {
        category: UnescapedArgumentCategory;
        certainty: LintingResultCertainty;
        function: Identifier;
        input: readonly InputType[];
        involvedId: NodeId | NodeId[] | undefined;
        loc: [
            startLine: number,
            startColumn: number,
            endLine: number,
            endColumn: number,
            f?: string,
        ];
        quickFix?: LintQuickFix[];
        sources: InputSources;
    }

    Hierarchy (View Summary)

    Index

    The category of the critical function call

    The certainty of the linting result.

    function: Identifier

    The identifier of the critical function call

    input: readonly InputType[]

    The critical input types reaching the argument

    involvedId: NodeId | NodeId[] | undefined

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

    loc: [
        startLine: number,
        startColumn: number,
        endLine: number,
        endColumn: number,
        f?: string,
    ]

    The source location where this linting result occurs

    quickFix?: LintQuickFix[]

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

    sources: InputSources

    The unescaped input sources reaching the critical function call