vigiles API reference
    Preparing search index...

    Interface VigilesV2Config

    interface VigilesV2Config {
        discover?: boolean;
        linters?: Record<string, LinterMode>;
        maxRules?: number;
        maxSectionLines?: number;
        maxTokens?: number;
        specs?: string;
        verifyLinters?: boolean;
    }
    Index

    Properties

    discover?: boolean

    Auto-discover linter rules for coverage reporting.

    linters?: Record<string, LinterMode>

    Per-linter verification mode: true (full), "catalog-only", or false (skip).

    maxRules?: number

    Maximum rules per spec file.

    maxSectionLines?: number

    Maximum lines per prose section. Forces splitting into named sections.

    maxTokens?: number

    Maximum estimated tokens for compiled output. ~4 chars per token.

    specs?: string

    Glob pattern to discover spec files. Default: "**/*.spec.ts"

    verifyLinters?: boolean

    Global kill switch: skip ALL linter verification during compile.