forked from kubeedge/website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodespell.cfg
More file actions
18 lines (14 loc) · 787 Bytes
/
codespell.cfg
File metadata and controls
18 lines (14 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[codespell]
# Enable built-in dictionaries/rules.
# See more details for https://github.com/codespell-project/codespell/tree/main/codespell_lib/data.
builtin = clear,rare,informal,code
# Ignore words listed in this file.
ignore-words = codespell_whitelist.txt
# Add custom dictionary file.
dictionary = codespell_dictionary.txt,-
# Skip checking files or directories.
# This folder is ignored for a couple of reasons.
# e.g) CHANGELOG files are generated by commit history that could include some misspellings,
# but we should keep the original commit messages here.
# Besides, it includes names of authors and contributors, which compile up the false alarms.
skip = ./build/*,./functions/*,./hack/*,./i18n/*,./static/*,./node_modules/*,./yarn.lock,./CHANGELOG.md,./.git/*