missing_docs_in_private_items does not honor allow statements #1895
Labels
A-lint
Area: New lints
good-first-issue
These issues are a good way to get started with Clippy
T-middle
Type: Probably requires verifiying types
I tried to enable the
missing_docs_in_private_items
lint. I have a coupe of modules that are not documented since they don't require it. The existing rustc lint formissing_docs
also flags it, but I set a#[allow(missing_docs)]
to silence the lint on just that module.Turns out
clippy
does not heed this specific exception and still warns me about the missing docs. Would it be possible to check if the user has tried to silence the warning on that part of the code?The text was updated successfully, but these errors were encountered: