Skip to content

Commit ceb3ffc

Browse files
prontclaude
andcommitted
chore: suppress file list echo in prettier Makefile targets
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 4add271 commit ceb3ffc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -512,11 +512,11 @@ fix-markdown: ## Auto-fix markdown style issues
512512

513513
.PHONY: check-prettier
514514
check-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
518518
fix-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
522522
check-examples: ## Check that the config/examples files are valid

0 commit comments

Comments
 (0)