-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathtypos.toml
More file actions
33 lines (27 loc) · 793 Bytes
/
typos.toml
File metadata and controls
33 lines (27 loc) · 793 Bytes
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
# Typos configuration for Jumpstarter monorepo
# https://github.com/crate-ci/typos
[default]
extend-ignore-re = [
# Ignore hash strings (like 321ba1)
"[a-f0-9]{6,}",
]
[default.extend-words]
# ANDed/ORed are valid technical terms (combined with AND/OR operations)
ANDed = "ANDed"
Ded = "Ded" # suffix of ANDed in generated CRD docs
ORed = "ORed"
# mosquitto is the name of an MQTT broker, not a typo of "mosquito"
mosquitto = "mosquitto"
# ser is short for "serialize" in variable names like ser_json_timedelta
ser = "ser"
[type.gomod]
# Exclude go.mod and go.sum from spell checking
extend-glob = ["go.mod", "go.sum"]
check-file = false
[files]
extend-exclude = [
# Generated files that shouldn't be spell-checked
"*.lock",
# Vendored dependencies
"vendor/",
]