Skip to content

Commit cb7187d

Browse files
committed
Add .eslintignore
We can't use the .gitignore for that becaue we have a committed fake node_modules folder
1 parent 5139fee commit cb7187d

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.eslintignore

+3
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
# Compiled by webpack
22
test/output
3+
4+
# Fake node_modules folder for tests
5+
test/node_modules

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"test-watch": "webpack --config test/watch/webpack.config.js",
1414
"test-extract-text": "webpack --config test/extractText/webpack.config.js",
1515
"test-hmr": "webpack-dev-server --config test/hmr/webpack.config.js --content-base ./test/hmr --hot --inline",
16-
"lint": "eslint --ignore-path .gitignore lib test",
16+
"lint": "eslint lib test",
1717
"appveyor:test": "npm test"
1818
},
1919
"keywords": [

0 commit comments

Comments
 (0)