Skip to content

Commit 3628603

Browse files
author
Ivan Demidov
committed
fix xo error report
1 parent a871fbe commit 3628603

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ var argv = require('yargs')
66
.config('c', function (configPath) {
77
return {
88
plugins: getConfig(configPath)
9-
}
9+
};
1010
})
1111
.alias('c', 'config')
1212
.alias('i', 'input')
@@ -25,7 +25,7 @@ var argv = require('yargs')
2525

2626
function getConfig(configPath) {
2727
var path = configPath || './package.json';
28-
return JSON.parse(fs.readFileSync(path, 'utf-8'))
28+
return JSON.parse(fs.readFileSync(path, 'utf-8'));
2929
}
3030

3131
var html = fs.readFileSync(argv.input, 'utf8');

0 commit comments

Comments
 (0)