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.
53
53
| [ ignore-interior-mutability] ( #ignore-interior-mutability ) | ` ["bytes::Bytes"] ` |
54
54
| [ allow-mixed-uninlined-format-args] ( #allow-mixed-uninlined-format-args ) | ` true ` |
55
55
| [ suppress-restriction-lint-in-const] ( #suppress-restriction-lint-in-const ) | ` false ` |
56
+ | [ missing-docs-in-crate-items] ( #missing-docs-in-crate-items ) | ` false ` |
56
57
57
58
### arithmetic-side-effects-allowed
58
59
Suppress checking of the passed type names in all types of operations.
@@ -540,4 +541,12 @@ if no suggestion can be made.
540
541
* [ indexing_slicing] ( https://rust-lang.github.io/rust-clippy/master/index.html#indexing_slicing )
541
542
542
543
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
+
543
552
Original file line number Diff line number Diff line change @@ -456,7 +456,7 @@ define_Conf! {
456
456
( suppress_restriction_lint_in_const: bool = false ) ,
457
457
/// Lint: MISSING_DOCS_IN_PRIVATE_ITEMS.
458
458
///
459
- /// Whether to **only** check for missing docmuentation in `pub(crate)` items.
459
+ /// Whether to **only** check for missing documentation in `pub(crate)` items.
460
460
( missing_docs_in_crate_items: bool = false ) ,
461
461
}
462
462
You can’t perform that action at this time.
0 commit comments