diff options
author | Bruno Wagner <bwgpro@gmail.com> | 2015-01-12 11:35:26 -0200 |
---|---|---|
committer | Bruno Wagner <bwgpro@gmail.com> | 2015-01-12 11:35:26 -0200 |
commit | b7c4c0bde3fbb3521ea2e280bca6f1ea80f81ca7 (patch) | |
tree | 363a5daac666348c1a1753422e9da54797186bc2 /service | |
parent | f8361731e4d3a7f6356355a231483109cfa70edc (diff) |
Added jshint to the go test
Diffstat (limited to 'service')
-rwxr-xr-x | service/go | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -24,7 +24,14 @@ function runPep8 { pep8 pixelated test --ignore=E501 } +function runJSHint { + cd ../web-ui + LC_ALL=en_US.UTF-8 ./go jshint + cd - +} + if [ "$1" == 'test' ]; then + runJSHint runPep8 runUnitTests runIntegrationTests |