-
Notifications
You must be signed in to change notification settings - Fork 645
Clippy cleanups #1735
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
Clippy cleanups #1735
Conversation
This will explicitly opt-in to clippy lints when using RLS.
And of course I was forgetting to use Since the renamed lint is only used in tests, I've added a hack that can be removed after the next stable release. |
Do you need callgrind.out.11995 and stats.txt? |
9c009c6
to
ffe2ff6
Compare
Good catch, I've removed those files. |
Thanks. Looks good to me. |
@bors r+ |
📌 Commit ffe2ff6 has been approved by |
Clippy cleanups This series first addresses a warning now produced on nightly. Then `clippy::all` and `rust_2018_idioms` are explicitly denied for all lib, bin, and test artifacts. By denying `clippy::all`, the RLS will automatically show clippy warnings in an IDE. This only affects the RLS and `cargo clippy --all-targets` should still used in a command line workflow.
☀️ Test successful - checks-travis |
This series first addresses a warning now produced on nightly. Then
clippy::all
andrust_2018_idioms
are explicitly denied for all lib, bin, and test artifacts.By denying
clippy::all
, the RLS will automatically show clippy warnings in an IDE. This only affects the RLS andcargo clippy --all-targets
should still used in a command line workflow.