Make typos config stricter (#17202)
# Objective - Currently ignores are too wide ## Solution - Make ignores stricter
This commit is contained in:
parent
b4442bc30e
commit
a839c525c1
42
typos.toml
42
typos.toml
@ -9,27 +9,31 @@ ignore-hidden = false
|
|||||||
|
|
||||||
# Match Inside a Word - Case Insensitive
|
# Match Inside a Word - Case Insensitive
|
||||||
[default.extend-words]
|
[default.extend-words]
|
||||||
LOD = "LOD" # Level of detail
|
LOD = "LOD" # Level of detail
|
||||||
TOI = "TOI" # Time of impact
|
reparametrization = "reparametrization" # Mathematical term in curve context (reparameterize)
|
||||||
|
reparametrize = "reparametrize"
|
||||||
|
reparametrized = "reparametrized"
|
||||||
|
|
||||||
|
# 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]
|
[default]
|
||||||
locale = "en-us"
|
locale = "en-us"
|
||||||
# Ignored typos regexes
|
# Ignored typos regexes
|
||||||
extend-ignore-identifiers-re = [
|
extend-ignore-re = [
|
||||||
"Ba", # Bitangent for Anisotropy
|
"\\bBelen Masia\\b", # The surname of one of the authors of SMAA
|
||||||
"ba", # Part of an accessor in WGSL - color.ba
|
"\\bBig Sur\\b", # macOS Big Sur
|
||||||
"ser", # ron::ser - Serializer
|
"\\bgeneric-rpg-ui-inventario", # Inventory in Portuguese
|
||||||
"SME", # Subject Matter Expert
|
"\\bmetalness\\b", # Rendering term (metallicity)
|
||||||
"Sur", # macOS Big Sur - South
|
"\\bNDKs\\b", # NDK - Native Development Kit
|
||||||
"NDK", # NDK - Native Development Kit
|
"\\bPNGs\\b", # PNG - Portable Network Graphics file format
|
||||||
"PNG", # PNG - Portable Network Graphics file format
|
|
||||||
"Masia", # The surname of one of the authors of SMAA
|
|
||||||
"metalness", # Rendering term (metallicity)
|
|
||||||
"inventario", # Inventory in Portuguese
|
|
||||||
"[Rr]eparametrize", # Mathematical term in curve context (reparameterize)
|
|
||||||
"[Rr]eparametrization",
|
|
||||||
# Used in bevy_mikktspace
|
|
||||||
"iFO",
|
|
||||||
"vOt",
|
|
||||||
"fLenOt",
|
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user