Skip to content

Commit 8237a98

Browse files
style: format code with Prettier
This commit fixes the style issues introduced in e3e5146 according to the output from Prettier. Details: #4
1 parent e3e5146 commit 8237a98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/fork-me/touchup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ while (dirs.length) {
5858
const dir = dirs.shift();
5959
fs.readdirSync(dir).forEach(f => {
6060
const f1 = path.resolve(dir, f);
61-
if (f.includes(".test.")) fs.unlink(f1, () => { });
61+
if (f.includes(".test.")) fs.unlink(f1, () => {});
6262
else if (fs.lstatSync(f1).isDirectory()) {
6363
dirs.push(f1);
6464
}

0 commit comments

Comments
 (0)