forked from GeodynamicWorldBuilder/WorldBuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.typos.toml
executable file
·46 lines (39 loc) · 1.21 KB
/
.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
32
33
34
35
36
37
38
39
40
41
42
43
[default]
# Don't check text that matches the following regexes'
extend-ignore-re = [
'\\cite\{.*\}', # citations contain arbitrary keys
]
locale = "en"
[default.extend-words]
# Don't correct abbreviations of the Boussinesq approximation
BA = "BA"
ba = "ba"
# Don't correct some other abbreviations
FOT = "FOT"
OCE = "OCE"
GWB = "GWB"
NWO = "NWO"
SEH = "SEH"
mak = "mak" # CMakeLists readability-mak*
# Don't check the following files
[files]
extend-exclude = [
"/include/glm",
"/include/ApprovalTests/*",
"/include/vtu11/*",
"/include/rapidjson/*",
"/include/doctest/doctest.h",
"*.svg",
"*.pvsm",
"*.vtu",
"*.js",
"*.json", # should be corrected in the original source
"*.schema.json", # should be corrected in the original source
"*.tex", # should be corrected in the original source
"/doc/world_builder_declarations_closed.md", # should be corrected in the original source
"/doc/world_builder_declarations_open.md", # should be corrected in the original source
"contrib/catch/*",
"contrib/world_builder/*",
"*.bib", # bib entries contain many arbitrary abbreviations
"tests/prmbackslash*", # this test purposefully breaks words on different lines
]