add ruff. fix all linting

This commit is contained in:
Matteo Rosati
2026-04-22 17:03:01 +02:00
parent bd5f649663
commit 33b46c2c21
14 changed files with 294 additions and 63 deletions
+20
View File
@@ -93,6 +93,26 @@ Run the test suite with pytest:
uv run pytest -q
```
## Development Checks
Run Ruff linting:
```bash
uv run ruff check .
```
Check Ruff formatting:
```bash
uv run ruff format --check .
```
Run static type checking with mypy:
```bash
uv run mypy .
```
## Commands
```text