
# Objective Update typos, fix new typos. 1.29.6 was just released to fix an [issue](https://github.com/crate-ci/typos/issues/1228) where January's corrections were not included in the binaries for the last release. Reminder: typos can be tossed in the monthly [non-critical corrections issue](https://github.com/crate-ci/typos/issues/1221). ## Solution I chose to allow `implementors`, because a good argument seems to be being made [here](https://github.com/crate-ci/typos/issues/1226) and there is now a PR to address that. ## Discussion Should I exclude `bevy_mikktspace`? At one point I think we had an informal policy of "don't mess with mikktspace until https://github.com/bevyengine/bevy/pull/9050 is merged" but it doesn't seem like that is likely to be merged any time soon. I think these particular corrections in mikktspace are fine because - The same typo mistake seems to have been fixed in that PR - The entire file containing these corrections was deleted in that PR ## Typo of the Month correspindong -> corresponding
41 lines
1.4 KiB
TOML
41 lines
1.4 KiB
TOML
[files]
|
|
extend-exclude = [
|
|
"*.pbxproj", # metadata file
|
|
"*.patch", # Automatically generated files that should not be manually modified.
|
|
"*.bin", # Binary files
|
|
".git/", # Version control files
|
|
]
|
|
ignore-hidden = false
|
|
|
|
# Match Inside a Word - Case Insensitive
|
|
[default.extend-words]
|
|
LOD = "LOD" # Level of detail
|
|
reparametrization = "reparametrization" # Mathematical term in curve context (reparameterize)
|
|
reparametrize = "reparametrize"
|
|
reparametrized = "reparametrized"
|
|
implementors = "implementors" # Can probably remove after next typos release. https://github.com/crate-ci/typos/issues/1226
|
|
|
|
# Match a Whole Word - Case Sensitive
|
|
[default.extend-identifiers]
|
|
Ba = "Ba" # Bitangent for Anisotropy
|
|
ba = "ba" # Part of an accessor in WGSL - weights.ba
|
|
fLenOt = "fLenOt"
|
|
iFO_a = "iFO_a"
|
|
iFO_b = "iFO_b"
|
|
ser = "ser" # ron::ser - Serializer
|
|
toi = "toi" # Time of impact
|
|
vOt = "vOt"
|
|
vOt2 = "vOt2"
|
|
|
|
[default]
|
|
locale = "en-us"
|
|
# Ignored typos regexes
|
|
extend-ignore-re = [
|
|
"\\bBelen Masia\\b", # The surname of one of the authors of SMAA
|
|
"\\bBig Sur\\b", # macOS Big Sur
|
|
"\\bgeneric-rpg-ui-inventario", # Inventory in Portuguese
|
|
"\\bmetalness\\b", # Rendering term (metallicity)
|
|
"\\bNDKs\\b", # NDK - Native Development Kit
|
|
"\\bPNGs\\b", # PNG - Portable Network Graphics file format
|
|
]
|