Skip to content

Commit

Permalink
fixing travis eslint error
Browse files Browse the repository at this point in the history
  • Loading branch information
sadasant committed Mar 28, 2017
1 parent aa9ba6d commit ddc4d0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ deploy:
before_script:
- git remote set-branches --add origin master
- git fetch
- LIST=$(git diff-index --name-only origin/master | grep .*\\.js | grep -v json | grep -v eslint | tr '\n' ' '); if [ "$LIST" ]; then eslint $LIST; fi
- LIST=$(git diff-index --name-only origin/master | grep .*\\.js | grep -v json | grep -v eslint | tr '\n' ' '); if [ "$LIST" ]; then eslint -c .eslintrc.js $LIST; fi
after_script:
- npm run cicoverage
- ./node_modules/coveralls/bin/coveralls.js < ./coverage/lcov.info
Expand Down

0 comments on commit ddc4d0d

Please sign in to comment.