(content: string)
| 31 | } |
| 32 | |
| 33 | function gitignoreContainsEntry(content: string): boolean { |
| 34 | return content.split('\n').some(raw => { |
| 35 | const line = raw.trim(); |
| 36 | return ( |
| 37 | line !== '' && !line.startsWith('#') && REPORTS_DIR_ENTRIES.has(line) |
| 38 | ); |
| 39 | }); |
| 40 | } |
no outgoing calls
no test coverage detected