(settings: CliSettings)
| 142 | } |
| 143 | |
| 144 | function _saveSystemFile(settings: CliSettings) { |
| 145 | const settingsFilePath = _getSettingsFilePath(); |
| 146 | const content = Ini.stringify(settings); |
| 147 | fs.writeFileSync(settingsFilePath, content); |
| 148 | } |
| 149 | |
| 150 | function _getSettingsFilePath(): string { |
| 151 | const settingsFile = ".lingodotdevrc"; |
no test coverage detected