Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,20 @@ uv run pytest
uv run ruff check --diff .
```

### Formatting

This will check the formatting and report any errors:

```sh
uv run ruff format --check .
```

This will automatically format the code:

```sh
uv run ruff format
```

## Manual Setup (without Dev Containers)

> Keeping this section as a fallback in case of Dev Container issues.
Expand Down