Interface CheckOptions

interface CheckOptions {
    allowEmptyTests?: boolean;
    logging?: LoggingOptions;
    clearCache?: boolean;
}

Properties

allowEmptyTests?: boolean

When true, allows empty tests (no violations created when no files match patterns) When false (default), creates EmptyTestViolation when no files match patterns

logging?: LoggingOptions

Logging configuration for check execution

clearCache?: boolean