Files
Untitled-Cat-Game/justfile
2026-06-22 18:40:10 -04:00

13 lines
149 B
Makefile

test:
uv run pytest
lint:
uv run ruff check
fmt:
uv run ruff format
typecheck:
uv run basedpyright
check: lint test typecheck