.PHONY: check-format check-type check-ci

UV = uv

check-format:
	$(UV) run ruff check .
	$(UV) run ruff format --check .

check-type:
	$(UV) run pyright

check-ci: check-format check-type
