Merge pull request #1019 from SOF3/go-flate

fix(dict): ignore flate for Go files
This commit is contained in:
Ed Page 2024-06-05 14:39:08 -05:00 committed by GitHub
commit 8d0593d333
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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 {