summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-07-28 10:24:24 -0400
committerChristopher Speller <crspeller@gmail.com>2015-07-28 10:24:24 -0400
commit18aaa9d175879abe09045d6022e5b6ddf1c4d910 (patch)
tree1da4dfd4833a4356df0974c80def6eaea22e5218 /Makefile
parentc1637ce11364806aed3d21059010717207406e44 (diff)
downloadchat-18aaa9d175879abe09045d6022e5b6ddf1c4d910.tar.gz
chat-18aaa9d175879abe09045d6022e5b6ddf1c4d910.tar.bz2
chat-18aaa9d175879abe09045d6022e5b6ddf1c4d910.zip
Adding check target to makefile to run eslint. Adding eslint to package.json
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 222d4ffe4..01986bf64 100644
--- a/Makefile
+++ b/Makefile
@@ -5,6 +5,7 @@ GOFLAGS ?= $(GOFLAGS:)
BUILD_NUMBER ?= $(BUILD_NUMBER:)
GO=$(GOPATH)/bin/godep go
+ESLINT=web/react/node_modules/eslint/bin/eslint.js
ifeq ($(BUILD_NUMBER),)
BUILD_NUMBER := dev
@@ -62,6 +63,10 @@ install:
@cd web/react/ && npm install
+check: install
+ @echo Running ESLint...
+ @$(ESLINT) web/react/components/*
+
test: install
@mkdir -p logs
@$(GO) test $(GOFLAGS) -run=$(TESTS) -test.v -test.timeout=180s ./api || exit 1