makectl 0.2.0

Generate and manage targets in your Makefiles
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 .