Skip to content

Commit

Permalink
Fix TSLint path (#20)
Browse files Browse the repository at this point in the history
* Fix TSLint path

* fix
  • Loading branch information
kevgo committed Jul 19, 2019
1 parent a03a35e commit 9525590
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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'
Expand Down

0 comments on commit 9525590

Please sign in to comment.