markmv - v1.26.2
    Preparing search index...

    Interface ValidateOperationOptions

    Configuration options for link validation operations.

    Controls how broken link detection is performed across markdown files.

    interface ValidateOperationOptions {
        linkTypes?: LinkType[];
        checkExternal: boolean;
        externalTimeout: number;
        strictInternal: boolean;
        checkClaudeImports: boolean;
        checkCircular: boolean;
        maxDepth?: number;
        onlyBroken: boolean;
        groupBy: "type" | "file";
        includeContext: boolean;
        dryRun?: boolean;
        verbose?: boolean;
        force?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    linkTypes?: LinkType[]

    Types of links to validate (default: all types)

    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

    dryRun?: boolean

    Show what would be changed without making changes

    verbose?: boolean

    Show detailed output

    force?: boolean

    Force operation even if conflicts exist