File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -512,11 +512,11 @@ fix-markdown: ## Auto-fix markdown style issues
512512
513513.PHONY : check-prettier
514514check-prettier : # # Check that JS/TS/YAML/JSON files are formatted with prettier
515- ${MAYBE_ENVIRONMENT_EXEC} prettier --ignore-path .prettierignore --check $(shell git ls-files '* .yml' '* .yaml' '* .js' '* .ts' '* .tsx' '* .json')
515+ @ ${MAYBE_ENVIRONMENT_EXEC} prettier --ignore-path .prettierignore --check $(shell git ls-files '* .yml' '* .yaml' '* .js' '* .ts' '* .tsx' '* .json')
516516
517517.PHONY : fix-prettier
518518fix-prettier : # # Auto-fix JS/TS/YAML/JSON formatting with prettier
519- ${MAYBE_ENVIRONMENT_EXEC} prettier --ignore-path .prettierignore --write $(shell git ls-files '* .yml' '* .yaml' '* .js' '* .ts' '* .tsx' '* .json')
519+ @ ${MAYBE_ENVIRONMENT_EXEC} prettier --ignore-path .prettierignore --write $(shell git ls-files '* .yml' '* .yaml' '* .js' '* .ts' '* .tsx' '* .json')
520520
521521.PHONY : check-examples
522522check-examples : # # Check that the config/examples files are valid
You can’t perform that action at this time.
0 commit comments