From f1336fcb003812ae43ce15cc81ac27d76f971120 Mon Sep 17 00:00:00 2001 From: Sehrope Sarkuni Date: Tue, 29 Aug 2017 11:03:48 -0400 Subject: [PATCH] Change Makefile to use local eslint Changes the Makefile lint target to use the local copy of eslint that would be installed in node_modules rather than a global copy that may not be installed. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f710d846..05736465 100644 --- a/Makefile +++ b/Makefile @@ -62,4 +62,4 @@ test-pool: lint: @echo "***Starting lint***" - eslint lib + node_modules/.bin/eslint lib