Consider allowing `clippy::too_many_arguments` directly in `Cargo.toml`
mohammadfawaz opened this issue · 1 comments
mohammadfawaz commented
It's likely that many functions in russcip
will require a large numer of arguments to match the actual SCIP C-API. Instead of having to add #[allow(clippy::too_many_arguments)]
everywhere like I had to do in #121, it's probably better to simply add
[lints.clippy]
too_many_arguments = "allow"
in Cargo.toml
An alternative is to modify the limit on what "too many" means but that seems unnecessary.
mmghannam commented
Thank you for the great suggestion!