Langium - v4.0.0
    Preparing search index...

    Interface ValidationOptions

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

    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. Lexing and parsing errors are reported first.

    stopAfterParsingErrors?: boolean

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