-
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
force full re-clippy #2498
Comments
Yep, this is annoying - the purpose of running a linter is to emit lints on every run :) |
Did #2582 fix this? |
My local tests say yes. Reopen a new issue if it persists on your system |
Closed
This is still an issue. |
Me too. Is there any explicit options to force re-run? |
tracked in #4612 on nightly you can use |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I want run
clippy
on my CI server and get every time all warnings,not only in changed projects.
Also I want to cache "target" directory between run of
cargo build
,because of compilation too slow.
But I don't see how it possible with current clippy:
as you see the second run of
clippy
gives nothing,And there is no option like
--force
, as workaround I usefind . -name "*.rs" -exec touch {} \;
,it is better then remove
target
orcargo clean
, but still cause also rebuild of crate in the nextcargo +nigtly test
The text was updated successfully, but these errors were encountered: