test:
    uv run pytest

lint:
    uv run ruff check

fmt:
    uv run ruff format
    
typecheck:
    uv run basedpyright

check: lint test typecheck