Skip to content

Commit

Permalink
fix(linting): fix bug in makefile script for linting an individual pa…
Browse files Browse the repository at this point in the history
…ckage (plouc#1982)
  • Loading branch information
tkonopka authored May 10, 2022
1 parent f83ad7b commit 17e3376
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ lint: ##@0 run eslint & tslint

package-lint-%: ##@1 packages run eslint on package
@echo "${YELLOW}Running eslint on package ${WHITE}@nivo/${*}${RESET}"
@yarn eslint ./packages/${*}/{src,tests}
@yarn eslint ./packages/${*}/{src,tests}/**/*.{js,ts,tsx}

packages-lint: ##@1 packages run eslint on all packages
@echo "${YELLOW}Running eslint on all packages${RESET}"
Expand Down

0 comments on commit 17e3376

Please sign in to comment.