(files: Set<string>)
| 163 | |
| 164 | /** First checker whose detect() fires for the given root entries, or undefined. */ |
| 165 | export function pickChecker(files: Set<string>): CheckerSpec | undefined { |
| 166 | return CHECKERS.find(c => c.detect(files)); |
| 167 | } |
| 168 | |
| 169 | /** |
| 170 | * Every checker that applies to this project, deduplicated to ONE per language. The |
no outgoing calls
no test coverage detected