()
| 22 | } |
| 23 | |
| 24 | public static getDefaultSettingsFilePath(): string { |
| 25 | return join(process.cwd(), 'resources', 'default-settings.yaml') |
| 26 | } |
| 27 | |
| 28 | public static loadAndParseYamlFile(path: string): Settings { |
| 29 | const defaultSettingsFileContent = fs.readFileSync(path, { encoding: 'utf-8' }) |
no outgoing calls
no test coverage detected