.PHONY: format lint GIT_ROOT ?= $(shell git rev-parse --show-toplevel) format: black . lint: mypy . black . --check ruff check . --fix test: pytest tests