Skip to content

Commit a22dd52

Browse files
committed
Place project-specific settings first in codespell configuration
The `ignore-words-list` and `skip` settings of the codespell configuration file may required project-specific adjustments to fix false positives or avoid positives from externally maintained files. The other settings are universal. It will be convenient to have the settings the user might need to adjust at the place of highest visibility in the configuration file.
1 parent 23cfef6 commit a22dd52

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.codespellrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# See: https://github.com/codespell-project/codespell#using-a-config-file
22
[codespell]
3-
builtin = clear,informal,en-GB_to_en-US
43
# In the event of a false positive, add the problematic word, in all lowercase, to a comma-separated list here:
54
ignore-words-list = ,
5+
skip = ./.git
6+
builtin = clear,informal,en-GB_to_en-US
67
check-filenames =
78
check-hidden =
8-
skip = ./.git

0 commit comments

Comments
 (0)