You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#[allow(clippy::all)]// <-- still produces warningspubmod com {pubmod foo {pubmod bar {#[allow(clippy::all)]// <-- also still produces warningsinclude!(concat!(env!("OUT_DIR"),"/com.foo.bar.rs"));}}}
The text was updated successfully, but these errors were encountered:
clippy::all is not literally "all" lints, rather it's the lints enabled by default. If you have additional lints enabled, you want to #[allow] those as well, or simply slap a #[allow(warnings)] on it.
Big picture: trying to disable clippy warnings for generated impl blocks
This seems to prevent clippy warnings on each generated enum & struct:
but related
impl
blocks still cause clippy warnings.is there already a solution for this?
Failed attempt #1
The text was updated successfully, but these errors were encountered: