Replies: 1 comment 2 replies
-
IIUC the This is a cargo feature and Clippy should not re-implement cargo features. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
With the ability of clippy to check
rust-version
from theCargo.toml
#8746, I was wondering about how this interacts with--ignore-rust-version
. It looks like this flag is just passed along and ignored on the clippy side?If that's the case I was wondering if it would make sense for clippy to have some handling for this flag to turn off the version check?
This came up in lalrpop/lalrpop#763 (comment) where for lalrpop, the suggestion is to set the msrv as somewhere <= stable -2 and then increase it within that constraint as new features are added. Here it would be nice if clippy could suggest lints that use these new features, even if they are not compatible with the current version.
Beta Was this translation helpful? Give feedback.
All reactions