forked from geodynamics/aspect
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.typos.toml
31 lines (28 loc) · 969 Bytes
/
.typos.toml
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
[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 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
]