(absolutePath: string)
| 16 | }; |
| 17 | |
| 18 | function readJsonFile<T>(absolutePath: string): T { |
| 19 | const raw = fs.readFileSync(absolutePath, 'utf-8'); |
| 20 | return JSON.parse(raw) as T; |
| 21 | } |
| 22 | |
| 23 | /** |
| 24 | * Register the 'validate' CLI command. |
no outgoing calls
no test coverage detected