Closed scullionw closed 2 weeks ago
And I assume you can't simply annotate your struct with #[allow(clippy::missing_docs_in_private_items)]
?
So this crate would have to add said attribute to some items. Now I wonder:
#[allow(warnings)]
to generated code? :thinking: I cannot reproduce this. Regardless of whether I make the struct pub
or not, as long as the struct itself has docs, no warnings are emitted from the code generated by confique.
same as https://github.com/LukasKalbertodt/confique/issues/25
but for
#![deny(clippy::missing_docs_in_private_items)]
To reproduce:
Seems like the doc comment is not passed through in this case?