fixed linting error and removed value from .env file

This commit is contained in:
Nathaniel Walser
2023-09-30 21:30:25 +02:00
parent d70be3abf9
commit d1a837b11d
2 changed files with 2 additions and 2 deletions

View File

@@ -30,4 +30,4 @@ export function loadConfig (): any {
export async function saveConfig (content: string): Promise<void> {
await writeFile(configPath, content, { encoding: 'utf8' })
await writeFile(configPath + '.backup', content, { encoding: 'utf8' })
}
}