Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bevyengine
GitHub Repository: bevyengine/bevy
Path: blob/main/typos.toml
9328 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
caf = "caf" # CAF - Core Audio Format
18
19
# Match a Whole Word - Case Sensitive
20
[default.extend-identifiers]
21
Ba = "Ba" # Bitangent for Anisotropy
22
ba = "ba" # Part of an accessor in WGSL - weights.ba
23
fLenOt = "fLenOt"
24
iFO_a = "iFO_a"
25
iFO_b = "iFO_b"
26
Nd = "Nd" # Normal of Decal
27
ser = "ser" # ron::ser - Serializer
28
toi = "toi" # Time of impact
29
vOt = "vOt"
30
vOt2 = "vOt2"
31
32
[default]
33
locale = "en-us"
34
# Ignored typos regexes
35
extend-ignore-re = [
36
"\\bBelen Masia\\b", # The surname of one of the authors of SMAA
37
"\\bBig Sur\\b", # macOS Big Sur
38
"\\bgeneric-rpg-ui-inventario", # Inventory in Portuguese
39
"\\bmetalness\\b", # Rendering term (metallicity)
40
"\\bNDKs\\b", # NDK - Native Development Kit
41
"\\bPNGs\\b", # PNG - Portable Network Graphics file format
42
"b\"wdth\"", # OpenType feature identifier for "width"
43
]
44
45