(file, line, msg)
| 18 | |
| 19 | const errors = []; |
| 20 | const addError = (file, line, msg) => |
| 21 | errors.push({ file: relative(ROOT, file), line, msg }); |
| 22 | |
| 23 | const IGNORE_DIRS = new Set([".git", "node_modules", ".github"]); |
| 24 |
no outgoing calls
no test coverage detected