about summary refs log tree commit diff
path: root/src/tools/rust-analyzer/clippy.toml
blob: 1046cb3d56bc695c114695deb3c98c69f3a21340 (plain)
1
2
3
4
5
6
7
8
9
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" },
]