(file: string)
| 38 | } |
| 39 | |
| 40 | function skip(file: string) { |
| 41 | const norm = file.replaceAll('\\', '/').toLowerCase(); |
| 42 | if (norm.startsWith('.changeset/')) return true; |
| 43 | if (norm === 'changelog.md' || norm.endsWith('/changelog.md')) return true; |
| 44 | if (norm.includes('node_modules/')) return true; |
| 45 | return false; |
| 46 | } |
| 47 | |
| 48 | type Issue = { file: string; line: number; kind: 'separator' | 'content'; detail: string }; |
| 49 |
no outgoing calls
no test coverage detected