mirror of
https://github.com/Eugeny/tabby.git
synced 2025-09-10 18:34:36 +00:00
lint
This commit is contained in:
@@ -205,7 +205,7 @@ export class ConfigService {
|
||||
// Scrub undefined values
|
||||
let cleanStore = JSON.parse(JSON.stringify(this._store))
|
||||
cleanStore = await this.maybeEncryptConfig(cleanStore)
|
||||
await this.platform.saveConfig(yaml.dump(cleanStore, {skipInvalid: true}))
|
||||
await this.platform.saveConfig(yaml.dump(cleanStore, { skipInvalid: true }))
|
||||
this.emitChange()
|
||||
}
|
||||
|
||||
@@ -213,7 +213,7 @@ export class ConfigService {
|
||||
* Reads config YAML as string
|
||||
*/
|
||||
readRaw (): string {
|
||||
return yaml.dump(this._store, {skipInvalid: true})
|
||||
return yaml.dump(this._store, { skipInvalid: true })
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user