Skip to content

Commit 414c299

Browse files
authored
Remove overly critical checks (#317)
Remove overly critical checks
2 parents 9e059eb + 72d51aa commit 414c299

File tree

3 files changed

+3
-36
lines changed

3 files changed

+3
-36
lines changed

.eslintrc.js

Lines changed: 0 additions & 13 deletions
This file was deleted.

.travis.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,8 @@
1-
dist: trusty
21
language: node_js
32
node_js:
4-
- "6"
3+
- '6'
54
cache:
65
directories:
76
- node_modules
8-
before_install:
9-
- npm install -g npm@5
10-
- npm install -g greenkeeper-lockfile@1
11-
install: npm install
12-
before_script:
13-
- greenkeeper-lockfile-update
14-
script:
15-
- npm run lint
16-
after_script: greenkeeper-lockfile-upload
177
notifications:
188
email: false

package.json

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
"test": "npm run test:default && npm run test:no-compression && npm run test:brotli-compression",
1818
"test:default": "node index && cat pipe.js | node pipe --name pipe.js --max-size 1kB",
1919
"test:no-compression": "cat pipe.js | node pipe --compression none --name pipe.js",
20-
"test:brotli-compression": "cat pipe.js | node pipe --compression brotli --name pipe.js",
21-
"lint": "eslint src store/*.js"
20+
"test:brotli-compression": "cat pipe.js | node pipe --compression brotli --name pipe.js"
2221
},
2322
"keywords": [
2423
"library",
@@ -63,7 +62,7 @@
6362
],
6463
"lint-staged": {
6564
"*.js": [
66-
"eslint --fix",
65+
"prettier",
6766
"git add"
6867
]
6968
},
@@ -77,15 +76,6 @@
7776
"babel-preset-es2015": "^7.0.0-beta.3",
7877
"babel-preset-stage-3": "^7.0.0-beta.3",
7978
"babel-traverse": "^7.0.0-beta.3",
80-
"eslint": "^4.5.0",
81-
"eslint-config-airbnb-base": "^12.0.0",
82-
"eslint-config-prettier": "^2.3.0",
83-
"eslint-config-standard": "^10.2.1",
84-
"eslint-plugin-import": "^2.7.0",
85-
"eslint-plugin-node": "^5.1.1",
86-
"eslint-plugin-prettier": "^2.2.0",
87-
"eslint-plugin-promise": "^3.5.0",
88-
"eslint-plugin-standard": "^3.0.1",
8979
"husky": "^0.14.3",
9080
"lint-staged": "^7.1.1",
9181
"prettier": "^1.6.0"

0 commit comments

Comments
 (0)