Skip to content

Commit 0f8c8e4

Browse files
committed
feat(gen): add conf file to repo root
1 parent aea8bde commit 0f8c8e4

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

typos.toml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,25 @@ check-filename = false
1414
check-file = true
1515
unicode=true
1616
locale = "en"
17-
extend-ignore-re = []
17+
extend-ignore-re = [
18+
'\*\*[a-zA-Z\s]+\*\*\S*', # Excludes "**C**ontrol" syntax
19+
'(?:[a-fA-F0-9]{2}:){15}[a-fA-F0-9]{2}\b', # ipv6 format
20+
'\b(?:[a-zA-Z][a-zA-Z-]*: )?[a-fA-F0-9][a-fA-F0-9-]{7,}\b', # matches hex IDs
21+
'\b[0-9a-fA-F]{8,}\b', # excludes hashes and other random strings
22+
'\b[A-Z][A-Z0-9]*\b', # excludes full caps words
23+
# '```.*$[\s\S]*```', excludes code blocks
24+
'[a-zA-Z]+([A-Z][a-z]+)+' # excludes Camel case and other funny up/down cases
25+
]
1826
extend-ignore-identifiers-re = []
1927
extend-ignore-words-re = []
2028

29+
[default.extend-words]
30+
pn = "pn"
31+
mosquitto = "mosquitto"
32+
Aer = "Aer"
33+
aer = "aer"
34+
AER = "AER"
35+
ND = "ND"
36+
thi = "thi"
37+
fo = "fo"
38+
vertx = "vertx"

0 commit comments

Comments
 (0)