about summary refs log tree commit diff
path: root/tvix/eval/clippy.toml
diff options
context:
space:
mode:
Diffstat (limited to 'tvix/eval/clippy.toml')
-rw-r--r--tvix/eval/clippy.toml3
1 files changed, 3 insertions, 0 deletions
diff --git a/tvix/eval/clippy.toml b/tvix/eval/clippy.toml
new file mode 100644
index 000000000000..c5302112b3ae
--- /dev/null
+++ b/tvix/eval/clippy.toml
@@ -0,0 +1,3 @@
+# See https://nnethercote.github.io/perf-book/hashing.html. Use FxHashMap and
+# FxHashSet, not HashMap and HashSet
+disallowed-types = ["std::collections::HashMap", "std::collections::HashSet"]