mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 00:51:11 -05:00
fix(dict): Alllow SHTTP
This commit is contained in:
parent
018f404770
commit
d8ac870213
4 changed files with 2 additions and 12 deletions
|
@ -1,12 +1,4 @@
|
|||
bin.name = "typos"
|
||||
stdin = ""
|
||||
stdout = """
|
||||
error: `SHTTP` should be `HTTPS`
|
||||
--> ./README.md:9:1
|
||||
|
|
||||
9 | SHTTP is a protocol
|
||||
| ^^^^^
|
||||
|
|
||||
"""
|
||||
stdout = ""
|
||||
stderr = ""
|
||||
status.code = 2
|
||||
|
|
1
crates/typos-dict/assets/allowed.csv
vendored
1
crates/typos-dict/assets/allowed.csv
vendored
|
@ -18,3 +18,4 @@ contiguities,plural of contiguity
|
|||
bellow,valid word and not just a typo of `below`
|
||||
revered,valid word and not just a typoe of `reversed`
|
||||
recuse,valid word despite maybe being a typo of recurse
|
||||
shttp,also a protocol
|
||||
|
|
|
1
crates/typos-dict/assets/words.csv
vendored
1
crates/typos-dict/assets/words.csv
vendored
|
@ -52334,7 +52334,6 @@ shtopped,stopped,shopped
|
|||
shtoppes,stops,shops
|
||||
shtopping,stopping,shopping
|
||||
shtops,stops,shops
|
||||
shttp,https
|
||||
shudown,shutdown
|
||||
shufle,shuffle
|
||||
shuld,should
|
||||
|
|
Can't render this file because it is too large.
|
|
@ -37383,7 +37383,6 @@ pub static WORD_SHT_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dict
|
|||
dictgen::InsensitiveStr::Ascii("oppes"),
|
||||
dictgen::InsensitiveStr::Ascii("opping"),
|
||||
dictgen::InsensitiveStr::Ascii("ops"),
|
||||
dictgen::InsensitiveStr::Ascii("tp"),
|
||||
],
|
||||
values: &[
|
||||
&["shitless"],
|
||||
|
@ -37396,7 +37395,6 @@ pub static WORD_SHT_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dict
|
|||
&["stops", "shops"],
|
||||
&["stopping", "shopping"],
|
||||
&["stops", "shops"],
|
||||
&["https"],
|
||||
],
|
||||
range: 2..=6,
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue