markmv - v1.26.2
    Preparing search index...

    Interface ValidateCliOptions

    CLI-specific options for the validate command.

    interface ValidateCliOptions {
        checkExternal: boolean;
        externalTimeout: number;
        strictInternal: boolean;
        checkClaudeImports: boolean;
        checkCircular: boolean;
        maxDepth?: number;
        onlyBroken: boolean;
        groupBy: "type" | "file";
        includeContext: boolean;
        linkTypes?: string;
        json?: boolean;
        dryRun?: boolean;
        verbose?: boolean;
        force?: boolean;
    }

    Hierarchy

    Index

    Properties

    checkExternal: boolean

    Enable external HTTP/HTTPS link validation

    externalTimeout: number

    Timeout for external link validation in milliseconds

    strictInternal: boolean

    Treat missing internal files as errors

    checkClaudeImports: boolean

    Validate Claude import paths

    checkCircular: boolean

    Check for circular references in file dependencies

    maxDepth?: number

    Maximum depth to traverse subdirectories when using glob patterns

    onlyBroken: boolean

    Show only broken links, not all validation results

    groupBy: "type" | "file"

    Group results by file or by link type

    includeContext: boolean

    Include line numbers and context in output

    linkTypes?: string

    Comma-separated list of link types to validate

    json?: boolean

    Output results in JSON format

    dryRun?: boolean

    Show what would be changed without making changes

    verbose?: boolean

    Show detailed output

    force?: boolean

    Force operation even if conflicts exist