11 lines
145 B
Makefile
11 lines
145 B
Makefile
lint:
|
|
uv run ruff check --fix .
|
|
uv run ruff format .
|
|
|
|
typecheck:
|
|
uv run pyright
|
|
|
|
test:
|
|
uv run pytest
|
|
|
|
check: lint typecheck test
|