(configPath: string)
| 149 | } |
| 150 | |
| 151 | export function readGlobalConfigFile(configPath: string): GlobalConfig { |
| 152 | try { |
| 153 | return readConfigFile(configPath, globalConfigSchema); |
| 154 | } catch (error) { |
| 155 | normalizeConfigError(error); |
| 156 | } |
| 157 | } |
| 158 | |
| 159 | export function writeGlobalConfigFile( |
| 160 | configPath: string, |
no test coverage detected