Files
puaros/packages/guardian/src/index.ts
imfozilbek 19abff30f0 feat: integrate framework leak detection into analysis pipeline
- Add framework leak detector to AnalyzeProject use case
- Export FrameworkLeakDetector in public API
- Add FRAMEWORK_LEAK rule constant
- Include framework leak violations in analysis response
2025-11-24 12:53:50 +05:00

16 lines
368 B
TypeScript

export * from "./domain"
export * from "./application"
export * from "./infrastructure"
export * from "./shared"
export { analyzeProject } from "./api"
export type {
AnalyzeProjectRequest,
AnalyzeProjectResponse,
ArchitectureViolation,
HardcodeViolation,
CircularDependencyViolation,
FrameworkLeakViolation,
ProjectMetrics,
} from "./api"