-
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
readme suggests nonexisting lint #3210
Comments
Oh yeah |
Ah, so there actually is no way to work around this besides |
If you use Clippy on the stable or beta toolchain ( #![cfg_attr(feature = "cargo-clippy", feature(tool_lints)] workaround. The only time |
Hmm, I would like to have the crate still compile on stable/beta, silence the warnings about deprecated cfg_attr on all releases that have the |
Yeah just |
tool_lints are stable now, so closing 🔒 |
clippy 0.0.212 (125907a 2018-09-17)
The readme states
"
For this to work you have to use Clippy on the nightly toolchain:
cargo +nightly clippy
. If youwant to use Clippy with the stable toolchain, you can stick to the old unscoped method to
enable/disable Clippy lints until
tool_lints
are stable:#![cfg_attr(feature = "cargo-clippy", allow(clippy_lint))]
"
However there is no
clippy_lint
lint that could be suppressed/allowed.EDIT: repro sample:
cc @flip1995
The text was updated successfully, but these errors were encountered: