bevy/typos.toml
Ame e32791e97a
remove comment in typos.toml (#12303)
I don't know how this ended here 🤷
2024-03-04 20:34:22 +00:00

30 lines
860 B
TOML

[files]
extend-exclude = [
"*.pbxproj", # metadata file
"CHANGELOG.md", # To keep consistency between the commit history/PRs.
]
# Corrections take the form of a key/value pair. The key is the incorrect word
# and the value is the correct word. If the key and value are the same, the
# word is treated as always correct. If the value is an empty string, the word
# is treated as always incorrect.
# Match Whole Word - Case Sensitive
[default.extend-identifiers]
ser = "ser" # ron::ser - Serializer
Sur = "Sur" # macOS Big Sur - South
# Match Inside a Word - Case Insensitive
[default.extend-words]
LOD = "LOD" # Level of detail
TOI = "TOI" # Time of impact
[default]
extend-ignore-identifiers-re = [
"NDK", # NDK - Native Development Kit
"inventario", # Inventory in Portuguese
# Used in bevy_mikktspace
"iFO",
"vOt",
"fLenOt",
]