(line: string)
| 283 | } |
| 284 | |
| 285 | function isInternalCommit(line: string): boolean { |
| 286 | return /^- (chore|ref|test|meta)/.test(line.trim()); |
| 287 | } |
| 288 | |
| 289 | function isImportantEntry(line: string): boolean { |
| 290 | return line.includes('**feat') || line.includes('**fix'); |
no test coverage detected