From 9e00f701971006583eb2bb946ec706bb5230e713 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Fri, 10 Oct 2025 08:24:24 +0000 Subject: [PATCH] Allow nursery clippy::tuple_array_conversions. Signed-off-by: Jason Volk --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 3a84ea1e..039f5b87 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -906,6 +906,7 @@ option_if_let_else = { level = "allow", priority = 1 } # TODO redundant_pub_crate = { level = "allow", priority = 1 } # TODO significant_drop_in_scrutinee = { level = "allow", priority = 1 } # TODO significant_drop_tightening = { level = "allow", priority = 1 } # TODO +tuple_array_conversions = { level = "allow", priority = 1 } ################### pedantic = { level = "warn", priority = -1 } @@ -920,6 +921,7 @@ if_then_some_else_none = { level = "allow", priority = 1 } inline_always = { level = "allow", priority = 1 } map_unwrap_or = { level = "allow", priority = 1 } match_bool = { level = "allow", priority = 1 } +match_same_arms = { level = "allow", priority = 1 } missing_docs_in_private_items = { level = "allow", priority = 1 } missing_errors_doc = { level = "allow", priority = 1 } missing_panics_doc = { level = "allow", priority = 1 }