epubcheck-ts
    Preparing search index...

    Interface EpubCheckOptions

    Options for EpubCheck

    interface EpubCheckOptions {
        customMessages?: Map<string, MessageSeverity>;
        includeInfo?: boolean;
        includeUsage?: boolean;
        locale?: string;
        maxErrors?: number;
        mode?: ValidationMode;
        profile?: EPUBProfile;
        version?: EPUBVersion;
    }
    Index

    Properties

    customMessages?: Map<string, MessageSeverity>

    Custom message severity overrides (message ID → severity)

    includeInfo?: boolean

    Whether to include info messages

    includeUsage?: boolean

    Whether to include usage messages

    locale?: string

    Locale for messages (e.g., 'en', 'de', 'fr')

    maxErrors?: number

    Maximum number of errors before stopping (0 = unlimited)

    Validation mode for single-file or expanded directory validation

    profile?: EPUBProfile

    Validation profile

    version?: EPUBVersion

    EPUB version to validate against (auto-detected if not specified)