1 2 3 4 5 6 7 8
## makectl: description="Format Node.js code with Prettier" .PHONY: format format: ## Format code npx prettier --write . .PHONY: format-check format-check: ## Check code formatting npx prettier --check .