makectl 0.2.0

Generate and manage targets in your Makefiles
1
2
3
4
5
6
7
8
9
10
## makectl: description="Format Python code"
VENV ?= .venv

.PHONY: format
format: ## Format code
	$(VENV)/bin/ruff format .

.PHONY: format-check
format-check: ## Check code formatting
	$(VENV)/bin/ruff format --check .