From 9525590c49a4356a56fc6b16afdcb597ec125bbb Mon Sep 17 00:00:00 2001 From: Kevin Goslar Date: Thu, 18 Jul 2019 23:17:23 -0500 Subject: [PATCH] Fix TSLint path (#20) * Fix TSLint path * fix --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 944a809..8c84d68 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ docs: # runs the documentation tests node_modules/.bin/text-run --offline --format dot fix: # runs the fixers - tslint --project . --fix + node_modules/.bin/tslint --project . --fix node_modules/.bin/prettier --write 'src/*.ts' node_modules/.bin/prettier --write 'test/*.ts' node_modules/.bin/prettier --write 'text-run/*.js' @@ -25,7 +25,7 @@ help: # prints all make targets @cat Makefile | grep '^[^ ]*:' | grep -v '.PHONY' | grep -v help | sed 's/:.*#/#/' | column -s "#" -t lint: # runs all linters - tslint --project . + node_modules/.bin/tslint --project . node_modules/.bin/prettier -l 'src/*.ts' node_modules/.bin/prettier -l 'test/*.ts' node_modules/.bin/prettier -l 'text-run/*.js'