(errors: GetConfigValidationError[])
| 193 | } |
| 194 | |
| 195 | function formatErrors(errors: GetConfigValidationError[]) { |
| 196 | const formattedErrors = errors.map((e) => relativizePathInPSLError(e.message)).join('\n\n') |
| 197 | const errorCount = `Validation Error Count: ${errors.length}` |
| 198 | return `${formattedErrors}\n${errorCount}` |
| 199 | } |
no test coverage detected