From f0868ac0c9e22b3aa103f439a1ed88ca68b1e71c Mon Sep 17 00:00:00 2001 From: David Peter Date: Mon, 28 Apr 2025 21:21:53 +0200 Subject: [PATCH] [red-knot] Revert blanket `clippy::too_many_arguments` allow (#17688) ## Summary Now that https://github.com/salsa-rs/salsa/issues/808 has been fixed, we can revert this global change in `Cargo.toml`. --- Cargo.toml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 7aa2608749..67b5bbc0ff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -231,10 +231,6 @@ unused_peekable = "warn" # Diagnostics are not actionable: Enable once https://github.com/rust-lang/rust-clippy/issues/13774 is resolved. large_stack_arrays = "allow" -# Salsa generates functions with parameters for each field of a `salsa::interned` struct. -# If we don't allow this, we get warnings for structs with too many fields. -too_many_arguments = "allow" - [profile.release] # Note that we set these explicitly, and these values # were chosen based on a trade-off between compile times