Skip to content

Commit c8772b7

Browse files
Josverldpgeorge
authored andcommitted
CODECONVENTIONS: Update docs for codespell and pre-commit hook.
Signed-off-by: Jos Verlinde <jos_verlinde@hotmail.com>
1 parent a166d80 commit c8772b7

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

CODECONVENTIONS.md

+16
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,22 @@ This command may work, please raise a new Issue if it doesn't:
104104
curl -L https://github.com/Homebrew/homebrew-core/raw/2b07d8192623365078a8b855a164ebcdf81494a6/Formula/uncrustify.rb > uncrustify.rb && brew install uncrustify.rb && rm uncrustify.rb
105105
```
106106

107+
Code spell checking
108+
===================
109+
110+
Code spell checking is done using [codespell](https://github.com/codespell-project/codespell#codespell)
111+
and runs in a GitHub action in CI. Codespell is configured via `pyproject.toml`
112+
to avoid false positives. It is recommended run codespell before submitting a
113+
PR. To simplify this, codespell is configured as a pre-commit hook and will be
114+
installed if you run `pre-commit install` (see below).
115+
116+
If you want to install and run codespell manually, you can do so by running:
117+
118+
```
119+
$ pip install codespell tomli
120+
$ codespell
121+
```
122+
107123
Automatic Pre-Commit Hooks
108124
==========================
109125

0 commit comments

Comments
 (0)