-
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
WIP: Add Applicability to suggestion lints #2943
Conversation
@@ -86,7 +87,8 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for ByteCount { | |||
"Consider using the bytecount crate", | |||
format!("bytecount::count({}, {})", | |||
snippet(cx, haystack.span, ".."), | |||
snippet(cx, needle.span, ".."))); | |||
snippet(cx, needle.span, "..")), | |||
Applicability::HasPlaceholders); |
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 only "maybe" has placeholders. We should make the snippet
function return a tuple of Applicability
and snippet-String
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.
The best thing to do here would be to have it accept &mut Applicability
IMO
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.
Something like
let mut applicability = span.into(); // if macro-ish, makes it MaybeIncorrect
let foo = span_to_snippet(...., &mut applicability) // if Applicable, makes it HasPlaceholders in the macro case
FWIW http://github.com/kennytm/rustup-toolchain-install-master lets you locally build clippy on trunk |
Nice to know! Thanks! |
Thanks so much for doing this! |
needs a rebase |
Should I add the Applicability argument to the snippet function in this PR or in a separate one? |
@@ -1325,6 +1332,7 @@ fn lint_unnecessary_fold(cx: &LateContext<'_, '_>, expr: &hir::Expr, fold_args: | |||
"this `.fold` can be written more succinctly using another method", | |||
"try", | |||
sugg, | |||
Applicability::HasPlaceholders, |
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.
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.
Oh this is a stale PR to remind me (and others) that this should be done sometimes. When I'm (or someone else) continues working on this, I would start from scratch and go over these Applicability
levels again (Also taking #3191 into consideration).
But yeah Applicability::MaybeIncorrect
would probably be better here.
Closing in favor of #3459 |
Resolves #2930
The applicability levels added to the
span_lint_and_sugg
andmultispan_sugg
(do we need this onmultispan_sugg
?) functions are how I felt would be the best fitting ones.I haven't tested this yet, because I wanted to wait for the new nightly instead of doing this manual. 😄
cc @Manishearth