Skip to content

Commit 3c741b7

Browse files
committed
Add intentionally misspelled word to spell check ignore list
One of the unit tests for the JSON schema validation interpretation code contains an intentionally misspelled word. This word has been added to the codespell misspelled word dictionary in the latest release, causing the spell check and its workflow runs to start failing. The spell check failure is hereby resolved by the addition of the intentionally misspelled word to the ignore list in the codespell configuration file.
1 parent 5e5e409 commit 3c741b7

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
@@ -2,7 +2,7 @@
22
# See: https://github.com/codespell-project/codespell#using-a-config-file
33
[codespell]
44
# In the event of a false positive, add the problematic word, in all lowercase, to a comma-separated list here:
5-
ignore-words-list = ot,propert
5+
ignore-words-list = ot,porperties,propert
66
skip = ./.git,./.licenses,**/go.mod,**/go.sum,./package-lock.json,./poetry.lock,./yarn.lock,./arduino-lint,./arduino-lint.exe,./internal/rule/rulefunction/testdata/libraries/MisspelledSentenceParagraphValue/library.properties,./site
77
builtin = clear,informal,en-GB_to_en-US
88
check-filenames =

0 commit comments

Comments
 (0)