Skip to content

Commit

Permalink
fixing styling on getTOMLFile
Browse files Browse the repository at this point in the history
  • Loading branch information
fadingNA committed Oct 2, 2024
1 parent 5b17dd2 commit 39be881
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/file_functions/getTOMLFileValues.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit 39be881

Please sign in to comment.