2
0
Fork 0
mirror of https://github.com/rust-lang/rust-analyzer synced 2025-02-21 00:18:57 +00:00
rust-analyzer/clippy.toml

6 lines
264 B
TOML
Raw Normal View History

disallowed-types = [
{ path = "std::collections::HashMap", reason = "use FxHashMap" },
{ path = "std::collections::HashSet", reason = "use FxHashSet" },
{ path = "std::collections::hash_map::RandomState", reason = "use BuildHasherDefault<FxHasher>"}
]