-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow clippy::too_many_arguments
to lint without warnings
#17249
Allow clippy::too_many_arguments
to lint without warnings
#17249
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me.
I keep feeling like I went way too fast in submitting this PR. As a result, I'm not actually sure if this is what we want, or if we want to do something slightly different. So I'm switching this to draft mode for now, until I can figure out what we want. |
I agree with this position too. |
Well, if two maintainers (one of them being the project lead) think that, then I think I'm going to un-draft this PR. |
Objective
Many instances of
clippy::too_many_arguments
linting happen to be on systems - functions which we don't call manually, and thus there's not much reason to worry about the argument count.Solution
Allow
clippy::too_many_arguments
globally, and remove all lint attributes related to it.