Skip to content

Commit bde9631

Browse files
committed
bug #64 Fix missing comma and lint index (davidmpaz)
This PR was squashed before being merged into the master branch (closes #64). Discussion ---------- Fix missing comma and lint index This fix #62 and adds index.js to lint task to avoid such things in future. Missing comma is related to #50. I believe the merge remove it by accident. Commits ------- e44bd38 Add index.js to linter 9675c1b Add missing comma
2 parents 7cefdbd + e44bd38 commit bde9631

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ module.exports = {
357357
*/
358358
enableTypeScriptLoader(callback) {
359359
webpackConfig.enableTypeScriptLoader(callback);
360-
}
360+
},
361361

362362
/**
363363
* If enabled, the Vue.js loader is enabled.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"main": "index.js",
66
"scripts": {
77
"test": "./node_modules/.bin/mocha --reporter spec test --recursive",
8-
"lint": "./node_modules/.bin/eslint lib test",
8+
"lint": "./node_modules/.bin/eslint lib test index.js",
99
"travis:lint": "npm run lint && npm run nsp",
1010
"nsp": "./node_modules/.bin/nsp check --output summary"
1111
},

0 commit comments

Comments
 (0)