mirror of
https://github.com/vee1e/kubeedge.git
synced 2026-09-01 10:18:33 +00:00
18 lines
801 B
INI
18 lines
801 B
INI
[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 = ./vendor/*,./go.sum,./build/*,./LICENSES/*,./CHANGELOG/*,*.svg,./staging/src/github.com/kubeedge/api/apidoc/generated/*
|