Skip to content

Commit fd22543

Browse files
authored
Add codespell configuration file
This file defines Arduino's standardized configuration for the codespell spellchecker tool. The file will also allow project specific configuration of exclusions to fix false positives.
1 parent f741417 commit fd22543

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.codespellrc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/spell-check/.codespellrc
2+
# See: https://github.com/codespell-project/codespell#using-a-config-file
3+
[codespell]
4+
# In the event of a false positive, add the problematic word, in all lowercase, to a comma-separated list here:
5+
ignore-words-list = ,
6+
skip = ./.licenses,.git,__pycache__,node_modules,go.mod,go.sum,package-lock.json,poetry.lock,yarn.lock
7+
builtin = clear,informal,en-GB_to_en-US
8+
check-filenames =
9+
check-hidden =

0 commit comments

Comments
 (0)