How to make a cfg known to clippy in workspace level #14476
-
Greetings, We have a Rust workspace where we run clippy with
We can of-course disable this lint, but it is useful, so it's preferable to keep it but allow Currently we're adding this little snippet in every package in our workspace:
We could put it in the workspace's Is there an alternative solution I'm missing? Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Not a Clippy lint, but happy to answer: taiki-e/cargo-llvm-cov#370 (comment) So it seems like the only way to do that is with Pinging @Urgau , as they might know of a better way to do this. |
Beta Was this translation helpful? Give feedback.
-
You could add the
|
Beta Was this translation helpful? Give feedback.
You could add the
--check-cfg=cfg(my_cfg)
toRUSTFLAGS
, but this would mean you still get a warning when not using thoseRUSTFLAGS
. Could show up in editors for examplelints.workspace = true
and move per package configuration into top level#![allow/warn/etc]
is an option, in the future it's likely cargo will gain the ability to do inheritance and per package config in Cargo.toml - rust-lang/cargo#13157