Skip to content

Commit 8e61008

Browse files
author
Alex Cruikshank
committed
conventionalize bracket style
1 parent e3ef1f1 commit 8e61008

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,9 @@ exports.load = function(fileName, currentEnv) {
1515
config = require(fileName);
1616
} catch(e) {
1717
// distinguish broken files from missing ones
18-
if (e instanceof SyntaxError)
18+
if (e instanceof SyntaxError){
1919
throw e;
20+
}
2021

2122
config = require(path.join(process.cwd(), fileName));
2223
}

0 commit comments

Comments
 (0)