Member Junction
    Preparing search index...
    interface Violation {
        code?: string;
        column: number;
        line: number;
        message: string;
        rule: string;
        severity: "critical" | "high" | "medium" | "low";
        source?:
            | "user-component"
            | "runtime-wrapper"
            | "react-framework"
            | "test-harness";
        suggestion?: { example?: string; text: string };
    }
    Index

    Properties

    code?: string
    column: number
    line: number
    message: string
    rule: string
    severity: "critical" | "high" | "medium" | "low"
    source?:
        | "user-component"
        | "runtime-wrapper"
        | "react-framework"
        | "test-harness"
    suggestion?: { example?: string; text: string }