KC's Workspace
    Preparing search index...

    Construct a type with the properties of T except for those in type K.

    interface PublintOptions {
        level?: "suggestion" | "warning" | "error";
        strict?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    level?: "suggestion" | "warning" | "error"

    The level of messages to log (default: 'suggestion').

    • suggestion: logs all messages
    • warning: logs only warning and error messages
    • error: logs only error messages
    strict?: boolean

    Report warnings as errors. This runs before level filters the result, which means that if level is set to 'error', all warnings (elevated as errors) will still be reported.