mirror of
https://github.com/samiyev/puaros.git
synced 2025-12-27 23:06:54 +05:00
- 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
16 lines
368 B
TypeScript
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"
|