14 lines
164 B
Makefile
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 playscii.py
|