| 2 | import { join } from "node:path"; |
| 3 | |
| 4 | interface Issue { |
| 5 | file: string; |
| 6 | line: number; |
| 7 | name: string; |
| 8 | suggestion: string; |
| 9 | } |
| 10 | |
| 11 | const UPPER_CASE_RE = /^[A-Z][A-Z0-9_]*$/; |
| 12 | const ICON_COMPONENT_RE = /Icon$/; |
nothing calls this directly
no outgoing calls
no test coverage detected