-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
.typos.toml
32 lines (30 loc) · 885 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
32
[files]
extend-exclude = [
".git/",
]
ignore-hidden = false
[default]
extend-ignore-re = [
# That's a ipv6
"2001:4f8:3:ba",
# That is just strangely cased
"dO_nOt_cHaNgE_cAsE", "fOoBaR",
# That is the name of a book author
"michael_ende", "Michael Ende",
# That's an actual money unit (include the commet to only match that part)
"Fils; // 1/1000th unit of Dinar",
# That's a name (include the expression to only match the relevant part)
"name\\.eq\\(\"Claus\"\\)",
# Thats a test for a typo,
"cannot find value `titel` in module `posts`",
"cannot find type `titel` in module `posts`",
"[0-9]+[[:space]]+|[[:space:]]+titel: String",
"big_sur",
# That's Spanish for "type" (used in a unit-test)
"tipe",
]
[type.md]
extend-ignore-re = [
# Occurs in the changelog
"derive\\(Queriable\\)", "`Queriable`"
]