(comments: Comment[])
| 29 | * Whether any findings can be posted to a pull request. |
| 30 | */ |
| 31 | export function hasPrPostableFindings(comments: Comment[]): boolean { |
| 32 | return comments.some(isPrPostableFinding); |
| 33 | } |
| 34 | |
| 35 | function hasInlineCommentLocation(comment: Comment): boolean { |
| 36 | return ( |
no outgoing calls
no test coverage detected
searching dependent graphs…