| 7 | const categorySet = new Set<string>(providerCategories); |
| 8 | const scopeSet = new Set<string>(providerScopes); |
| 9 | |
| 10 | export interface MetadataCheckResult { |
| 11 | ok: boolean; |
| 12 | sourceCount: number; |
| 13 | errors: string[]; |
| 14 | } |
| 15 | |
| 16 | export async function checkMetadata(sourcesDir: string): Promise<MetadataCheckResult> { |
nothing calls this directly
no outgoing calls
no test coverage detected