@samiyev/guardian
Version:
Research-backed code quality guardian for AI-assisted development. Detects hardcodes, secrets, circular deps, framework leaks, entity exposure, and 9 architecture violations. Enforces Clean Architecture/DDD principles. Works with GitHub Copilot, Cursor, W
13 lines • 474 B
TypeScript
import { FileScanOptions, IFileScanner } from "../../domain/services/IFileScanner";
/**
* Scans project directory for source files
*/
export declare class FileScanner implements IFileScanner {
private readonly defaultExcludes;
private readonly defaultExtensions;
scan(options: FileScanOptions): Promise<string[]>;
private scanDirectory;
private shouldExclude;
readFile(filePath: string): Promise<string>;
}
//# sourceMappingURL=FileScanner.d.ts.map