tdd-guard
Version:
TDD Guard enforces Test-Driven Development principles using Claude Code hooks
15 lines • 534 B
TypeScript
import { Storage } from '../storage/Storage';
export declare class GuardManager {
private readonly storage;
private readonly minimatchOptions;
static readonly DEFAULT_IGNORE_PATTERNS: string[];
constructor(storage?: Storage);
isEnabled(): Promise<boolean>;
enable(): Promise<void>;
disable(): Promise<void>;
getIgnorePatterns(): Promise<string[]>;
shouldIgnoreFile(filePath: string): Promise<boolean>;
private setGuardEnabled;
private getConfig;
}
//# sourceMappingURL=GuardManager.d.ts.map