I often develop with #![warn(missing_docs)], and the generated code from crevice's proc macros run afowl of this. Adding #[allow(warnings)] to the generated code should fix this for all custom lints (of course, when developing crevice itself and maybe by default this should not be included, so placing it behind a feature flag seems sensible to me).
I often develop with
#![warn(missing_docs)]
, and the generated code from crevice's proc macros run afowl of this. Adding#[allow(warnings)]
to the generated code should fix this for all custom lints (of course, when developing crevice itself and maybe by default this should not be included, so placing it behind a feature flag seems sensible to me).