1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
.PHONY: all lint diff format test all: format test lint: python3 -m black --check src python3 -m flake8 src python3 -m mypy src diff: python3 -m isort --diff src python3 -m black --diff src format: python3 -m isort src python3 -m black src