Skip to content

Commit 944c87a

Browse files
varun-doshifselmo
authored andcommitted
chore: add command checks for packages
1 parent 3fb2b01 commit 944c87a

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ uv run fill --fork=devnet --clean # Generate test vectors
2626

2727
### Code Quality
2828
```bash
29-
uv run ruff format src tests # Format code
29+
uv run ruff format src tests packages # Format code
3030
uv run ruff check --fix src tests packages # Lint and fix
3131
uvx tox -e typecheck # Type check
3232
uvx tox -e all-checks # All quality checks

README.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)