diff options
Diffstat (limited to 'service/go')
-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 |