Added `npm run lint` command to execute JSCS

This patch adds jscs as an npm dependency, and executes it within
the npm venv. It can be used to trigger the infra npm-run-lint job
and thus get voting javascript code linting into infra.

Change-Id: I2c92a7596a8faee28de582493bdf72425deac8cc
This commit is contained in:
Michael Krotscheck 2015-06-05 09:56:50 -07:00
parent 5fa6f0f0fa
commit 1cc79a0b19
1 changed files with 3 additions and 1 deletions

View File

@ -7,6 +7,7 @@
"license": "Apache 2.0",
"devDependencies": {
"jasmine-core": "2.2.0",
"jscs": "1.13.1",
"karma": "0.12.31",
"karma-chrome-launcher": "0.1.8",
"karma-cli": "0.0.4",
@ -18,7 +19,8 @@
},
"scripts": {
"postinstall": "if [ ! -d .venv ]; then tox -epy27 --notest; fi",
"test": "karma start horizon/karma.conf.js --single-run && karma start openstack_dashboard/karma.conf.js --single-run"
"test": "karma start horizon/karma.conf.js --single-run && karma start openstack_dashboard/karma.conf.js --single-run",
"lint": "jscs --no-colors horizon/static/horizon/js horizon/static/horizon/tests horizon/static/framework/ openstack_dashboard/static/dashboard/"
},
"dependencies": {}
}