Files
Pumpkin/crates/pumpkin-data/Clippy.toml
2026-08-06 12:56:40 +02:00

4 lines
233 B
TOML

disallowed-types = [
{ path = "std::collections::HashMap", reason = "If you need a map, use BTreeMap for deterministic ordering. Otherwise it forces a rebuild after every change.", replacement = "std::collections::BTreeMap" },
]