Interface NamedProblemMatcher

interface NamedProblemMatcher {
    applyTo: ApplyToKind;
    deprecated?: boolean;
    fileLocation: FileLocationKind;
    filePrefix?: string;
    label: string;
    name: string;
    owner: string;
    pattern: ProblemPattern | ProblemPattern[];
    severity?: Severity;
    source?: string;
    uriProvider?: ((path) => URI);
    watching?: WatchingMatcher;
}

Hierarchy (view full)

Properties

applyTo: ApplyToKind
deprecated?: boolean
fileLocation: FileLocationKind
filePrefix?: string
label: string
name: string
owner: string
severity?: Severity
source?: string
uriProvider?: ((path) => URI)

Type declaration

    • (path): URI
    • Parameters

      • path: string

      Returns URI

watching?: WatchingMatcher