/** * Scanner: Code Conventions * * Samples up to 20 source files per file category and detects: * - File naming patterns (camelCase / kebab-case / PascalCase / snake_case) * - Import style (relative vs absolute/alias, .js extensions) * - Export patterns (named vs default) * - TypeScript patterns (any, ts-ignore, enum, interface, type) */ import type { CodeConventionsReport } from "../types.js"; export declare function scanCodeConventions(projectRoot: string): Promise; //# sourceMappingURL=code-conventions.d.ts.map