summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-05-14 03:06:09 -0400
committerRyan Dahl <ry@tinyclouds.org>2018-05-14 03:06:09 -0400
commit6f59a9588b7d6d53c5f56facb0e33f7faec7b6fe (patch)
treecf58f4788bb185845e4a30026b0ac45d917a40b2 /Makefile
parentaba6a1dc871edbc6cbb286a350a4ba79ca645fb8 (diff)
Add tslint, and tenative travis file.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6ccc4781d..6164ec8a4 100644
--- a/Makefile
+++ b/Makefile
@@ -27,4 +27,8 @@ clean:
distclean: clean
-rm -rf node_modules/
-.PHONY: clean distclean
+lint: node_modules
+ yarn lint
+ go vet
+
+.PHONY: lint clean distclean