From 222e68ac0bcec715c891373f77a9a4aee6cab7ff Mon Sep 17 00:00:00 2001 From: Daniil Polyakov Date: Mon, 9 Mar 2026 21:40:34 +0300 Subject: [PATCH] feat: add correctness clippy lints --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 70a50f5e..9f891dae 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -256,3 +256,6 @@ clippy.nursery = { level = "deny", priority = -1 } clippy.future-not-send = "allow" # Reason: this is actually a good lint, but currently it gives a lot of false-positives. clippy.significant-drop-tightening = "allow" + +# Correctness +clippy.correctness = { level = "deny", priority = -1 }