fix(dict): Ignore flate for Go files

Signed-off-by: SOFe <sofe2038@gmail.com>
This commit is contained in:
SOFe 2024-05-27 11:53:33 +08:00
parent 27ba9761d1
commit 107f99d4c6
No known key found for this signature in database
GPG key ID: 2CB779AC5EE3445B

View file

@ -16,6 +16,15 @@ pub(crate) const TYPE_SPECIFIC_DICTS: &[(&str, StaticDictConfig)] = &[
ignore_words: &[],
},
),
(
"go",
StaticDictConfig {
ignore_idents: &[
"flate", // https://pkg.go.dev/compress/flate
],
ignore_words: &[],
},
),
(
"jl",
StaticDictConfig {