We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89ed3bb commit fbf80d8Copy full SHA for fbf80d8
package.json
@@ -5,9 +5,9 @@
5
"main": "lib/index.js",
6
"scripts": {
7
"build": "babel src --out-dir lib",
8
- "example": "npm run build && webpack --config example/webpack.config.js",
9
"prepublish": "npm run build",
10
- "test": "mocha --compilers js:babel-core/register"
+ "test": "mocha --compilers js:babel-core/register",
+ "lint": "eslint src/ test/"
11
},
12
"keywords": [
13
"optimize",
test/.eslintrc
@@ -5,7 +5,8 @@
"rules": {
"no-console": 0,
- "brace-style": 0
+ "brace-style": 0,
+ "no-unused-vars": 0
"globals": {
"Promise": true,
0 commit comments