23 lines
407 B
Makefile
23 lines
407 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
|
|
|
|
render:
|
|
uv run python scripts/render_map.py
|
|
|
|
edit:
|
|
python -c "import webbrowser, pathlib; webbrowser.open('file://' + str(pathlib.Path('scripts/map_editor.html').resolve()))"
|