-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Fix FP in wrong_self_convention
lint
#7064
Conversation
r? @giraffate (rust-highfive has picked a reviewer for you, use r? to override) |
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.
It looks good, thanks!
@ThibsG Can you update changelog
? This fixes FP, so I don't think changelog: none
is appropriate.
Yes of course, I was get used to let the reviewer set the appropriate text for changelog (mostly to keep coherence I think) 😄 |
@bors r+ Thanks! |
📌 Commit 3ce6f0d has been approved by |
@giraffate as a team member you should now be able to change the PR body description on your own, so that you don't have to wait on the author. |
@ThibsG There is no real syntax for this line. The only thing that helps (me) when writing the changelog is when the lint name is put into brackets |
Oh, thanks for teaching me that! |
☀️ Test successful - checks-action_dev_test, checks-action_remark_test, checks-action_test |
…effen Update pull request template A follow-up of <#7064 (comment)>. changelog: none
Previously, this lint didn't check into impl block when it was implementing a trait.
Recent improvements (#6924) have moved this check and some impl blocks are now checked but they shouldn't, such as in #7032.
Fixes #7032
changelog: Fix FP when not taking
self
in impl block for [wrong_self_convention
] lint