Add justfile for project commands

This commit is contained in:
Jared Miller 2026-02-12 19:42:20 -05:00
parent b6ddfcd74f
commit 52149750cf
Signed by: shmup
GPG key ID: 22B5C6D66A38B06C

14
justfile Normal file
View file

@ -0,0 +1,14 @@
lint:
uv run ruff check --fix .
uv run ruff format .
typecheck:
uvx ty check
test:
uv run pytest
check: lint
run:
uv run python playscii.py