-
Notifications
You must be signed in to change notification settings - Fork 269
Expand file tree
/
Copy path.typos.toml
More file actions
37 lines (33 loc) · 1.04 KB
/
.typos.toml
File metadata and controls
37 lines (33 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[default]
# Don't check text that matches the following regexes'
extend-ignore-re = [
'\\cite\{.*\}', # citations contain arbitrary keys
]
[default.extend-words]
# Don't correct abbreviations of the Boussinesq approximation
BA = "BA"
ba = "ba"
# Don't correct some other abbreviations
FOT = "FOT"
LinearNDInterpolator = "LinearNDInterpolator"
ND = "ND"
# Don't correct abbreviations for some minerals
Fo = "Fo"
En = "En"
Qtz = "Qtz"
Wad = "Wad"
# Don't check the following files
[files]
extend-exclude = [
"*.svg",
"*.pvsm",
"*.vtu",
"contrib/catch/*",
"contrib/world_builder/*",
"tests/world_builder_declarations*",
"*.bib", # bib entries contain many arbitrary abbreviations
"parameters.*", # parameters should be corrected in the original source
"doc/sphinx/parameters/*", # parameters should be corrected in the original source
"tests/prmbackslash*", # this test purposefully breaks words on different lines
"contrib/python/env-py_aspect.yml", # this contains random strings which may trip up typos
]