@codebakers/cli 1.6.0 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,19 @@
1
+ interface AuditCheck {
2
+ name: string;
3
+ category: string;
4
+ passed: boolean;
5
+ message: string;
6
+ details?: string[];
7
+ severity: 'error' | 'warning' | 'info';
8
+ }
9
+ interface AuditResult {
10
+ checks: AuditCheck[];
11
+ score: number;
12
+ maxScore: number;
13
+ passed: boolean;
14
+ }
15
+ /**
16
+ * Run automated code quality audit
17
+ */
18
+ export declare function audit(): Promise<AuditResult>;
19
+ export {};