dilaria/clippy.toml
2021-12-30 13:19:52 +01:00

8 lines
350 B
TOML

disallowed-types = [
# we want to use our custom HashMap/HashSet from `values.rs`, so that consumers can choose between which HashMap they want
"std::collections::HashMap",
"std::collections::HashSet",
# we want to use bumpalo::collections::Vec, this can be removed later I guess
"std::collections::Vec",
"std::boxed::Box",
]