From 09e33a22652ae760c03415640fca426256074b57 Mon Sep 17 00:00:00 2001 From: Dorian Niemiec Date: Thu, 29 Aug 2024 19:15:49 +0200 Subject: [PATCH] Lint out the codebase --- src/index.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index ac399c1..57fbbb5 100644 --- a/src/index.js +++ b/src/index.js @@ -1674,7 +1674,10 @@ function saveConfig() { if (configJSONobj.optOutOfStatisticsServer === undefined) 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; } catch (err) { if (i >= 2) throw err;