mud/justfile
2026-02-07 12:21:39 -05:00

17 lines
223 B
Makefile

lint:
uv run ruff check --fix .
uv run ruff format .
typecheck:
uv run pyright
test:
uv run pytest
check: lint typecheck test
run:
uv run python -m mudlib
debug:
uv run python -m mudlib --debug