blob: 672f5bac9030fd0627f6522def2cd4f4a9d357fa (
plain)
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
|
# Corrections take the form of a key/value pair. The key is the incorrect word
# and the value is the correct word. If the key and value are the same, the
# word is treated as always correct. If the value is an empty string, the word
# is treated as always incorrect.
[files]
extend-exclude = [
".git/",
]
ignore-hidden = false
[default]
extend-ignore-re = [
"\\bPolygon::PN\\b",
]
# Case sensitive, matches entire word.
[default.extend-identifiers]
anc_color = "anc_color"
rady = "rady"
# Case insensitive, matches inside word.
[default.extend-words]
bellow = "below"
toi = "toi"
|