File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ Please use that command to update the file and do not edit it by hand.
5353| [ ignore-interior-mutability] ( #ignore-interior-mutability ) | ` ["bytes::Bytes"] ` |
5454| [ allow-mixed-uninlined-format-args] ( #allow-mixed-uninlined-format-args ) | ` true ` |
5555| [ suppress-restriction-lint-in-const] ( #suppress-restriction-lint-in-const ) | ` false ` |
56+ | [ missing-docs-in-crate-items] ( #missing-docs-in-crate-items ) | ` false ` |
5657
5758### arithmetic-side-effects-allowed
5859Suppress checking of the passed type names in all types of operations.
@@ -540,4 +541,12 @@ if no suggestion can be made.
540541* [ indexing_slicing] ( https://rust-lang.github.io/rust-clippy/master/index.html#indexing_slicing )
541542
542543
544+ ### missing-docs-in-crate-items
545+ Whether to ** only** check for missing documentation in ` pub(crate) ` items.
546+
547+ ** Default Value:** ` false ` (` bool ` )
548+
549+ * [ missing_docs_in_private_items] ( https://rust-lang.github.io/rust-clippy/master/index.html#missing_docs_in_private_items )
550+
551+
543552
Original file line number Diff line number Diff line change @@ -456,7 +456,7 @@ define_Conf! {
456456 ( suppress_restriction_lint_in_const: bool = false ) ,
457457 /// Lint: MISSING_DOCS_IN_PRIVATE_ITEMS.
458458 ///
459- /// Whether to **only** check for missing docmuentation in `pub(crate)` items.
459+ /// Whether to **only** check for missing documentation in `pub(crate)` items.
460460 ( missing_docs_in_crate_items: bool = false ) ,
461461}
462462
You can’t perform that action at this time.
0 commit comments