1
0
Fork 0
forked from svrjs/svrjs

Lint out the codebase

This commit is contained in:
Dorian Niemiec 2024-08-29 19:15:49 +02:00
parent 058c39ab0d
commit 09e33a2265

View file

@ -1674,7 +1674,10 @@ function saveConfig() {
if (configJSONobj.optOutOfStatisticsServer === undefined) if (configJSONobj.optOutOfStatisticsServer === undefined)
configJSONobj.optOutOfStatisticsServer = false; configJSONobj.optOutOfStatisticsServer = false;
fs.writeFileSync(process.dirname + "/config.json", JSON.stringify(configJSONobj, null, 2) + "\n"); fs.writeFileSync(
process.dirname + "/config.json",
JSON.stringify(configJSONobj, null, 2) + "\n",
);
break; break;
} catch (err) { } catch (err) {
if (i >= 2) throw err; if (i >= 2) throw err;