mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 09:01:04 -05:00
commit
a6b843487f
3 changed files with 1 additions and 74 deletions
1
crates/typos-dict/assets/words.csv
vendored
1
crates/typos-dict/assets/words.csv
vendored
|
@ -48364,7 +48364,6 @@ thast,that
|
||||||
thatn,that,than
|
thatn,that,than
|
||||||
thay,they
|
thay,they
|
||||||
thck,thick
|
thck,thick
|
||||||
thead,thread
|
|
||||||
theard,thread
|
theard,thread
|
||||||
thearding,threading
|
thearding,threading
|
||||||
theards,threads
|
theards,threads
|
||||||
|
|
Can't render this file because it is too large.
|
|
@ -16217,7 +16217,6 @@ static WORD_THEA_NODE: dictgen::DictTrieNode<&'static [&'static str]> = dictgen:
|
||||||
|
|
||||||
pub static WORD_THEA_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dictgen::DictTable {
|
pub static WORD_THEA_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dictgen::DictTable {
|
||||||
keys: &[
|
keys: &[
|
||||||
dictgen::InsensitiveStr::Ascii("d"),
|
|
||||||
dictgen::InsensitiveStr::Ascii("rd"),
|
dictgen::InsensitiveStr::Ascii("rd"),
|
||||||
dictgen::InsensitiveStr::Ascii("rding"),
|
dictgen::InsensitiveStr::Ascii("rding"),
|
||||||
dictgen::InsensitiveStr::Ascii("rds"),
|
dictgen::InsensitiveStr::Ascii("rds"),
|
||||||
|
@ -16228,7 +16227,6 @@ pub static WORD_THEA_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dic
|
||||||
dictgen::InsensitiveStr::Ascii("ture"),
|
dictgen::InsensitiveStr::Ascii("ture"),
|
||||||
],
|
],
|
||||||
values: &[
|
values: &[
|
||||||
&["thread"],
|
|
||||||
&["thread"],
|
&["thread"],
|
||||||
&["threading"],
|
&["threading"],
|
||||||
&["threads"],
|
&["threads"],
|
||||||
|
@ -16238,7 +16236,7 @@ pub static WORD_THEA_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dic
|
||||||
&["theatre"],
|
&["theatre"],
|
||||||
&["theatre"],
|
&["theatre"],
|
||||||
],
|
],
|
||||||
range: 1..=5,
|
range: 2..=5,
|
||||||
};
|
};
|
||||||
|
|
||||||
static WORD_THC_NODE: dictgen::DictTrieNode<&'static [&'static str]> = dictgen::DictTrieNode {
|
static WORD_THC_NODE: dictgen::DictTrieNode<&'static [&'static str]> = dictgen::DictTrieNode {
|
||||||
|
|
|
@ -179,76 +179,6 @@ impl TypeEngineConfig {
|
||||||
..Default::default()
|
..Default::default()
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
patterns
|
|
||||||
.entry("css".into())
|
|
||||||
.or_insert_with(|| GlobEngineConfig {
|
|
||||||
extend_glob: Vec::new(),
|
|
||||||
engine: EngineConfig {
|
|
||||||
dict: Some(DictConfig {
|
|
||||||
extend_identifiers: maplit::hashmap! {
|
|
||||||
"thead".into() => "thead".into(),
|
|
||||||
},
|
|
||||||
..Default::default()
|
|
||||||
}),
|
|
||||||
..Default::default()
|
|
||||||
},
|
|
||||||
});
|
|
||||||
patterns
|
|
||||||
.entry("js".into())
|
|
||||||
.or_insert_with(|| GlobEngineConfig {
|
|
||||||
extend_glob: Vec::new(),
|
|
||||||
engine: EngineConfig {
|
|
||||||
dict: Some(DictConfig {
|
|
||||||
extend_identifiers: maplit::hashmap! {
|
|
||||||
"thead".into() => "thead".into(),
|
|
||||||
},
|
|
||||||
..Default::default()
|
|
||||||
}),
|
|
||||||
..Default::default()
|
|
||||||
},
|
|
||||||
});
|
|
||||||
patterns
|
|
||||||
.entry("ts".into())
|
|
||||||
.or_insert_with(|| GlobEngineConfig {
|
|
||||||
extend_glob: Vec::new(),
|
|
||||||
engine: EngineConfig {
|
|
||||||
dict: Some(DictConfig {
|
|
||||||
extend_identifiers: maplit::hashmap! {
|
|
||||||
"thead".into() => "thead".into(),
|
|
||||||
},
|
|
||||||
..Default::default()
|
|
||||||
}),
|
|
||||||
..Default::default()
|
|
||||||
},
|
|
||||||
});
|
|
||||||
patterns
|
|
||||||
.entry("html".into())
|
|
||||||
.or_insert_with(|| GlobEngineConfig {
|
|
||||||
extend_glob: Vec::new(),
|
|
||||||
engine: EngineConfig {
|
|
||||||
dict: Some(DictConfig {
|
|
||||||
extend_identifiers: maplit::hashmap! {
|
|
||||||
"thead".into() => "thead".into(),
|
|
||||||
},
|
|
||||||
..Default::default()
|
|
||||||
}),
|
|
||||||
..Default::default()
|
|
||||||
},
|
|
||||||
});
|
|
||||||
patterns
|
|
||||||
.entry("md".into())
|
|
||||||
.or_insert_with(|| GlobEngineConfig {
|
|
||||||
extend_glob: Vec::new(),
|
|
||||||
engine: EngineConfig {
|
|
||||||
dict: Some(DictConfig {
|
|
||||||
extend_identifiers: maplit::hashmap! {
|
|
||||||
"thead".into() => "thead".into(),
|
|
||||||
},
|
|
||||||
..Default::default()
|
|
||||||
}),
|
|
||||||
..Default::default()
|
|
||||||
},
|
|
||||||
});
|
|
||||||
patterns
|
patterns
|
||||||
.entry("vim".into())
|
.entry("vim".into())
|
||||||
.or_insert_with(|| GlobEngineConfig {
|
.or_insert_with(|| GlobEngineConfig {
|
||||||
|
|
Loading…
Reference in a new issue