add .travis.yml to run lint

This commit is contained in:
groovecoder 2017-02-02 14:00:18 -06:00
parent 85e211a14b
commit adcebe47c2
2 changed files with 3 additions and 1 deletions

1
.travis.yml Normal file
View file

@ -0,0 +1 @@
language: node_js

View file

@ -41,6 +41,7 @@
"lint:addon": "addons-linter webextension --self-hosted",
"lint:css": "stylelint webextension/css/*.css",
"lint:html": "htmllint webextension/*.html",
"lint:js": "eslint ."
"lint:js": "eslint .",
"test": "npm run lint"
}
}