Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bevyengine
GitHub Repository: bevyengine/bevy
Path: blob/main/typos.toml
6570 views
1
[files]
2
extend-exclude = [
3
"*.pbxproj", # metadata file
4
"*.patch", # Automatically generated files that should not be manually modified.
5
"*.bin", # Binary files
6
".git/", # Version control files
7
]
8
ignore-hidden = false
9
10
# Match Inside a Word - Case Insensitive
11
[default.extend-words]
12
LOD = "LOD" # Level of detail
13
reparametrization = "reparametrization" # Mathematical term in curve context (reparameterize)
14
reparametrize = "reparametrize"
15
reparametrized = "reparametrized"
16
mis = "mis" # mis - multiple importance sampling
17
18
# Match a Whole Word - Case Sensitive
19
[default.extend-identifiers]
20
Ba = "Ba" # Bitangent for Anisotropy
21
ba = "ba" # Part of an accessor in WGSL - weights.ba
22
fLenOt = "fLenOt"
23
iFO_a = "iFO_a"
24
iFO_b = "iFO_b"
25
ser = "ser" # ron::ser - Serializer
26
toi = "toi" # Time of impact
27
vOt = "vOt"
28
vOt2 = "vOt2"
29
30
[default]
31
locale = "en-us"
32
# Ignored typos regexes
33
extend-ignore-re = [
34
"\\bBelen Masia\\b", # The surname of one of the authors of SMAA
35
"\\bBig Sur\\b", # macOS Big Sur
36
"\\bgeneric-rpg-ui-inventario", # Inventory in Portuguese
37
"\\bmetalness\\b", # Rendering term (metallicity)
38
"\\bNDKs\\b", # NDK - Native Development Kit
39
"\\bPNGs\\b", # PNG - Portable Network Graphics file format
40
]
41
42