@@ -87,16 +87,16 @@ uv run pytest -m "not slow"
8787
8888``` bash
8989# Check code style and errors
90- uv run ruff check src tests
90+ uv run ruff check src tests packages
9191
9292# Auto-fix issues
93- uv run ruff check --fix src tests
93+ uv run ruff check --fix src tests packages
9494
9595# Format code
96- uv run ruff format src tests
96+ uv run ruff format src tests packages
9797
9898# Type checking
99- uv run mypy src tests
99+ uv run mypy src tests packages
100100```
101101
102102### Using Tox for Comprehensive Checks
@@ -175,18 +175,18 @@ def test_withdrawal_amount_above_uint64_max():
175175
176176## Common Commands Reference
177177
178- | Task | Command |
179- | -----------------------------------------------| ------------------------------------|
180- | Install and sync project and dev dependencies | ` uv sync --all-packages ` |
181- | Run tests | ` uv run pytest ... ` |
182- | Format code | ` uv run ruff format src tests ` |
183- | Lint code | ` uv run ruff check src tests ` |
184- | Fix lint errors | ` uv run ruff check --fix src tests ` |
185- | Type check | ` uv run mypy src tests ` |
186- | Build docs | ` uv run mkdocs build ` |
187- | Serve docs | ` uv run mkdocs serve ` |
188- | Run everything (checks + tests + docs) | ` uvx tox ` |
189- | Run all quality checks (no tests/docs) | ` uvx tox -e all-checks ` |
178+ | Task | Command |
179+ | -----------------------------------------------| ----------------------------------------------- |
180+ | Install and sync project and dev dependencies | ` uv sync --all-packages ` |
181+ | Run tests | ` uv run pytest ... ` |
182+ | Format code | ` uv run ruff format src tests packages ` |
183+ | Lint code | ` uv run ruff check src tests packages ` |
184+ | Fix lint errors | ` uv run ruff check --fix src tests packages ` |
185+ | Type check | ` uv run mypy src tests packages ` |
186+ | Build docs | ` uv run mkdocs build ` |
187+ | Serve docs | ` uv run mkdocs serve ` |
188+ | Run everything (checks + tests + docs) | ` uvx tox ` |
189+ | Run all quality checks (no tests/docs) | ` uvx tox -e all-checks ` |
190190
191191
192192## Contributing
0 commit comments