Skip to content

Commit

Permalink
Remove overly critical checks (#317)
Browse files Browse the repository at this point in the history
Remove overly critical checks
  • Loading branch information
siddharthkp authored Jun 28, 2019
2 parents 9e059eb + 72d51aa commit 414c299
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 36 deletions.
13 changes: 0 additions & 13 deletions .eslintrc.js

This file was deleted.

12 changes: 1 addition & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,8 @@
dist: trusty
language: node_js
node_js:
- "6"
- '6'
cache:
directories:
- node_modules
before_install:
- npm install -g npm@5
- npm install -g greenkeeper-lockfile@1
install: npm install
before_script:
- greenkeeper-lockfile-update
script:
- npm run lint
after_script: greenkeeper-lockfile-upload
notifications:
email: false
14 changes: 2 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@
"test": "npm run test:default && npm run test:no-compression && npm run test:brotli-compression",
"test:default": "node index && cat pipe.js | node pipe --name pipe.js --max-size 1kB",
"test:no-compression": "cat pipe.js | node pipe --compression none --name pipe.js",
"test:brotli-compression": "cat pipe.js | node pipe --compression brotli --name pipe.js",
"lint": "eslint src store/*.js"
"test:brotli-compression": "cat pipe.js | node pipe --compression brotli --name pipe.js"
},
"keywords": [
"library",
Expand Down Expand Up @@ -63,7 +62,7 @@
],
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier",
"git add"
]
},
Expand All @@ -77,15 +76,6 @@
"babel-preset-es2015": "^7.0.0-beta.3",
"babel-preset-stage-3": "^7.0.0-beta.3",
"babel-traverse": "^7.0.0-beta.3",
"eslint": "^4.5.0",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-config-prettier": "^2.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-prettier": "^2.2.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"lint-staged": "^7.1.1",
"prettier": "^1.6.0"
Expand Down

0 comments on commit 414c299

Please sign in to comment.