summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2019-09-28 15:49:41 -0400
committerrsiddharth <s@ricketyspace.net>2019-09-28 15:49:41 -0400
commit374acddbab15ea93729c842ea59d8a13d23a1c90 (patch)
tree07e92e72cb3b3e8eb6898f07734eaff567077a52 /Makefile
parent4e7fa5541d0f520717b9eeb4932a0fc22b3b5dfd (diff)
Makefile: Add jsh (jshint).
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 4b68aac..ec9aeee 100644
--- a/Makefile
+++ b/Makefile
@@ -9,6 +9,7 @@
VENV_DIR=/usr/local/virtualenv/.dingy
VENV_CMD=virtualenv-3
+JSHINT=~/.npm-packages/bin/jshint
dunno:
@echo "Give me somepin to make"
@@ -29,3 +30,8 @@ venv:
rm -rf $(VENV_DIR); fi'
${VENV_CMD} --clear --python=python3 $(VENV_DIR)
.PHONY: venv
+
+
+jsh:
+ @${JSHINT} nfsw/static/io.js
+.PHONY: jsh