Skip to content

Commit f2e387d

Browse files
committed
Exclude project binary file from codespell
The "codespell" tool is used to check for the presence of commonly misspelled words in the project files. Automatically generated files should be excluded from such checks for efficiency and to avoid false positives. Although they are not checked into the repository, when contributors build the project the binary files will be present in the project folder and thus subject to such checks. "codespell" is smart enough to automatically detect binary files and not check their content, but it will be best to explicitly configure it to skip the files entirely for the sake of efficiency.
1 parent b38231d commit f2e387d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.codespellrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[codespell]
44
# In the event of a false positive, add the problematic word, in all lowercase, to a comma-separated list here:
55
ignore-words-list = ,
6-
skip = ./.git,./.licenses,__pycache__,go.mod,go.sum,node_modules,./package-lock.json,./poetry.lock,./yarn.lock
6+
skip = ./.git,./.licenses,__pycache__,go.mod,go.sum,node_modules,./package-lock.json,./poetry.lock,./yarn.lock,./arduinoOTA,./arduinoOTA.exe
77
builtin = clear,informal,en-GB_to_en-US
88
check-filenames =
99
check-hidden =

0 commit comments

Comments
 (0)