-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Labels
S-needs-discussionStatus: Needs further discussion before merging or work can be startedStatus: Needs further discussion before merging or work can be started
Description
I'm currently trying to use Clippy for a large multi-crate project. An issue I've found is enabling additional lints: if I want to enable missing_docs_in_private_items
, I've got to add #![allow(unknown_lints)]
and #![warn(missing_docs_in_private_items)]
to every main.rs and lib.rs (i.e. >10 places).
It would make clippy more usable for large projects if one could allow/deny/warn lints in clippy.toml, e.g.
warn = ["missing_docs_in_private_items"]
jD91mZM2, sanmai-NL, svenstaro, gnzlbg, oli-obk and 60 more
Metadata
Metadata
Assignees
Labels
S-needs-discussionStatus: Needs further discussion before merging or work can be startedStatus: Needs further discussion before merging or work can be started