Open xavier2k6 opened 6 months ago
Currently, our word splitting strictly follows CamelCase and so it splits checkWebUIUPnP
as check Web UIU Pn P
. You can see this by running typos --words
This is somewhat like #466 where some "identifiers" don't follow standard conventions. So far, we've not come up with a better plan for handling these cases.
These cases can be worked around by
WebUI
or UPnP
as valid via regex@epage Thanks for the tip!
Modified .typos.toml
& now passed.
[default.extend-words]
BA = "BA"
helo = "helo"
UIU = "UIU"
Pn = "Pn"
It is rather
[default.extend-identifiers]
checkWebUIUPnP = "checkWebUIUPnP"
typos 1.20.9
UIU
ofWebUIUPnp
is being falsely detected asYOU
WebUI
is an abbreviation/acronym for Web User InterfaceUPnP
is an abbreviation/acronym for Universal Plug and Play