Skip to content
Open
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
22 changes: 22 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,28 @@ Submit a pull request at any time, whether an issue has been created or not. It

Please follow the [SRT Developer's Guide](docs/dev/developers-guide.md).

## Spell Check

Before submitting a pull request, we should run codespell locally to check for spelling errors.
This helps ensure your PR passes the automated checks.

```console
# create python venv
python3 -m venv .venv

# activate venv
source .venv/bin/activate

# install codespell in venv
pip install codespell

# run codespell with config
codespell --config scripts/codespell/codespell.cfg

# deactivate venv
deactivate
```

## Code Style

Please follow existing style.
Expand Down
Loading