[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`.
This commit is contained in:
David Peter 2025-04-28 21:21:53 +02:00 committed by GitHub
parent 01a31c08f5
commit f0868ac0c9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -231,10 +231,6 @@ unused_peekable = "warn"
# Diagnostics are not actionable: Enable once https://github.com/rust-lang/rust-clippy/issues/13774 is resolved. # Diagnostics are not actionable: Enable once https://github.com/rust-lang/rust-clippy/issues/13774 is resolved.
large_stack_arrays = "allow" 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] [profile.release]
# Note that we set these explicitly, and these values # Note that we set these explicitly, and these values
# were chosen based on a trade-off between compile times # were chosen based on a trade-off between compile times