-
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
Add a count parameter to the expect attribute #3400
base: master
Are you sure you want to change the base?
Add a count parameter to the expect attribute #3400
Conversation
Hey and thank you for the RFC! Currently, there is a discussion in the tracking issue rust-lang/rust#54503 and on Zulip what lint emission should actually be suppressed and fulfill the lint expectation. I would recommend putting this RFC on hold, until a decision was made in that regard. |
# Unresolved questions | ||
[unresolved-questions]: #unresolved-questions | ||
|
||
- Can we allow `#[expect(..., count = 0)]` with some useful behavior? What about |
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.
expect(lint, count = 0)
seems like it should be the same as deny(lint)
.
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.
Agreed. I could see count = 0
being convenient for a tool that decreases the expected count when it is too high. Such a tool would then not have to deal with this edge case.
In my mind expect(lint, count = 0)
should compile with a warning (or clippy lint) suggesting using deny
instead.
The decision has been reached and the attribute has been stabilized, so can we un-hold this RFC? I'd still love to see this feature happen. |
This RFC proposes extending the
expect
attribute` from #2383Rendered