Warn on missing_docs
by default
#287
Labels
linting
Changes for better linting and/or their cleanups
missing_docs
by default
#287
Right now, crates that want to enforce docs have
#![warn(missing_docs)]
, while crates that do not write nothing. Let's flip this and require the negligent crates to write#![allow(missing_docs)]
. This should encourage better behavior for new crates, and make it easy to see which crates are still lacking docs.The text was updated successfully, but these errors were encountered: