makectl 0.2.0

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

.PHONY: lint
lint: ## Run linters
	$(VENV)/bin/ruff check .
	$(VENV)/bin/mypy .

.PHONY: lint-fix
lint-fix: ## Run linters and fix issues
	$(VENV)/bin/ruff check --fix .