mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-11 20:58:54 +00:00
9 lines
427 B
TOML
9 lines
427 B
TOML
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>"}
|
|
]
|
|
|
|
disallowed-methods = [
|
|
{ path = "std::process::Command::new", reason = "use `toolchain::command` instead as it forces the choice of a working directory" },
|
|
]
|