* Write a message to stderr for logging. * * @param {string} msg - Message to log
(msg)
| 45 | * @param {string} msg - Message to log |
| 46 | */ |
| 47 | function log(msg) { |
| 48 | process.stderr.write(`${msg}\n`); |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * Run quality-gate checks for a single file based on its extension. |
no outgoing calls
no test coverage detected