playscii/justfile
Jared Miller 4f8b009a71
Reorganize source into playscii/ package
Move all root .py files into playscii/ package directory.
Rename playscii.py to app.py, add __main__.py entry point.
Convert bare imports to relative (within package) and absolute
(in formats/ and games/). Data dirs stay at root.
2026-02-13 09:19:59 -05:00

14 lines
164 B
Makefile

lint:
uv run ruff check --fix .
uv run ruff format .
typecheck:
uvx ty check
test:
uv run pytest
check: lint
run:
uv run python -m playscii