-
Notifications
You must be signed in to change notification settings - Fork 475
/
_typos.toml
27 lines (23 loc) · 974 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
# With a focus on spell checking source code, most text will be in the form of
# identifiers that are made up of words conjoined via snake_case, CamelCase,
# etc. A typo at the word level might not be a typo as part of an identifier,
# so identifiers get checked and, if not in a dictionary, will then be split
# into words to be checked.
[files]
extend-exclude = [
"cspell.yaml",
"target/",
]
# Identifiers are defined using unicode's XID_Continue which includes [a-zA-Z0-9_].
[default.extend-identifiers]
hellow554 = "hellow554"
# Words are split from identifiers on case changes as well as breaks in [a-zA-Z]
# with a special case to handle acronyms. For example, First10HTMLTokens
# would be split as first, html, tokens.
[default.extend-words]
# ue is used in a test to make sure that 'val ue' was parsed correctly
ue = "ue"
# BA is part of a example mac address that is tripping up typos
BA = "BA"
# typos thinks this should be "sought"
seeked = "seeked"