Skip to content

Commit

Permalink
Temporarily disable eslint for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jkphl committed Jun 18, 2017
1 parent ff15e55 commit 8c0505a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ node_js:
- '4.0'
- '5.0'
- '6.0'
- '7.0'
- '8.0'

after_script:
- npm run coveralls
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"description": "Asynchronous, non-blocking loading pattern for CSS and JavaScript resources",
"main": "index.js",
"scripts": {
"test": "npm run build && eslint **/*.js && istanbul test _mocha --report html -- test/*.js --reporter spec",
"test-no-lint": "npm run build && istanbul test _mocha --report html -- test/*.js --reporter spec",
"test-lint": "npm run build && eslint **/*.js && istanbul test _mocha --report html -- test/*.js --reporter spec",
"test": "npm run build && echo \"Temporarily skipping eslint because of https://github.com/airbnb/javascript/issues/1454\" && istanbul test _mocha --report html -- test/*.js --reporter spec",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"build": "babel lib --presets es2015-script --out-dir build",
"prepublish": "npm run build",
Expand Down

0 comments on commit 8c0505a

Please sign in to comment.