Source code location of the warning present in JSON output.

interface WarningLocation {
    code: string;
    column: number;
    file: string;
    line: number;
}

Properties

Properties

code: string

Lines of code in this location used in warning message

column: number

Column number.

file: string

Absolute path from the analyzer's process directory.

line: number

Line number.