add .travis.yml file, to enable auto lint through travis CI (#35)

This commit is contained in:
yungez 2016-10-13 14:00:46 +08:00 коммит произвёл GitHub
Родитель 64754f5403
Коммит 165bc8b1d2
1 изменённых файлов: 16 добавлений и 0 удалений

16
.travis.yml Normal file
Просмотреть файл

@ -0,0 +1,16 @@
language: node_js
node_js:
- "6"
before_script:
- npm install eslint
script: node_modules/.bin/eslint *.js | if grep "error "; then echo "there's lint error, pls fix it"; exit 1; fi
notifications:
email:
on_success: change
on_failure: always
matrix:
fast_finish: true