@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
11 lines • 356 B
TypeScript
/**
* Interface for parsing source code
* Allows infrastructure implementations without domain coupling
*/
export interface ICodeParser {
parseJavaScript(code: string): unknown;
parseTypeScript(code: string): unknown;
parseTsx(code: string): unknown;
extractFunctions(tree: unknown): string[];
}
//# sourceMappingURL=ICodeParser.d.ts.map