From 39be881283a9d8af33dc03a337e364af963944a5 Mon Sep 17 00:00:00 2001 From: fadingNA Date: Wed, 2 Oct 2024 17:51:16 -0400 Subject: [PATCH] fixing styling on getTOMLFile --- src/file_functions/getTOMLFileValues.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/file_functions/getTOMLFileValues.js b/src/file_functions/getTOMLFileValues.js index 16d7d11..f2a256a 100644 --- a/src/file_functions/getTOMLFileValues.js +++ b/src/file_functions/getTOMLFileValues.js @@ -11,7 +11,9 @@ const __homeDir = os.homedir(); export default function getTOMLFileValues() { const tomlFile = path.join(__homeDir, '.gimme_readme_config'); - if (!fs.existsSync(tomlFile)) return null; + if (!fs.existsSync(tomlFile)) { + return null; + } try { const configContent = fs.readFileSync(tomlFile, 'utf-8');