@omnist-dev/omnist
    Preparing search index...

    Interface LintFinding

    One structural diagnostic. code is a stable machine-readable identifier (unsatisfiable-record, unreachable-record, duplicate-record, any-field); severity is warning or info; location is a record name (or record.label for any-field); message is a human-readable, actionable description.

    interface LintFinding {
        code: string;
        location: string;
        message: string;
        severity: "warning" | "info";
    }
    Index
    code: string

    Stable machine-readable diagnostic code.

    location: string

    Schema location of the finding (e.g. "User.bio").

    message: string

    Human-readable explanation and suggestion.

    severity: "warning" | "info"

    Severity level ("warning" or "info").