We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Changing the CLI flags passed to clippy will not make clippy re-run the affected lints on crates. In particular running
cargo clippy
may reveal a number of warnings that one might want to immediately deny before fixing, so they would change their CI script to invoke
cargo clippy -- -Dclippy::some_lint
but upon rerunning the CI script cargo clippy will just dump the old warnings from previous run.
The text was updated successfully, but these errors were encountered:
Looks like a duplicate of rust-lang/cargo#7862 ?
Sorry, something went wrong.
I guess?
No branches or pull requests
Changing the CLI flags passed to clippy will not make clippy re-run the affected lints on crates. In particular running
may reveal a number of warnings that one might want to immediately deny before fixing, so they would change their CI script to invoke
but upon rerunning the CI script
cargo clippy
will just dump the old warnings from previous run.The text was updated successfully, but these errors were encountered: