Skip to content

Commit 2539c63

Browse files
committed
small linter fix
1 parent cbc64f4 commit 2539c63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/readfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ module.exports = function(file) {
2626
// JS / JSON / CoffeeScript
2727
if (ext.match(/json|js|coffee|ls/)) {
2828
if (!path.isAbsolute(file)) {
29-
file = path.join(process.cwd(), file)
29+
file = path.join(process.cwd(), file);
3030
}
3131
return require(file);
3232
}

0 commit comments

Comments
 (0)