Interface ValidationOptions

interface ValidationOptions {
    categories?: ValidationCategory[];
    stopAfterLexingErrors?: boolean;
    stopAfterLinkingErrors?: boolean;
    stopAfterParsingErrors?: boolean;
}

Properties

categories?: ValidationCategory[]

If this is set, only the checks associated with these categories are executed; otherwise all checks are executed. The default category if not specified to the registry is 'fast'.

stopAfterLexingErrors?: boolean

If true, no further diagnostics are reported if there are lexing errors.

stopAfterLinkingErrors?: boolean

If true, no further diagnostics are reported if there are linking errors.

stopAfterParsingErrors?: boolean

If true, no further diagnostics are reported if there are parsing errors.