summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xservice/go7
1 files changed, 7 insertions, 0 deletions
diff --git a/service/go b/service/go
index 111f7515..a6cf213e 100755
--- a/service/go
+++ b/service/go
@@ -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