@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
14 lines • 442 B
TypeScript
/**
* Checks if a file is a constants definition file
*
* Identifies files that should be skipped for hardcode detection
* since they are meant to contain constant definitions.
*/
export declare class ConstantsFileChecker {
private readonly constantsPatterns;
/**
* Checks if a file path represents a constants file
*/
isConstantsFile(filePath: string): boolean;
}
//# sourceMappingURL=ConstantsFileChecker.d.ts.map