.PHONY: lint typecheck test

lint:
	uv run ruff check .
	uv run ruff format .

typecheck:
	uv run pyright

test:
	uv run pytest tests/ -v
