14 lines
179 B
Makefile
14 lines
179 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
|