mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 13:13:34 +00:00
update metadata
This commit is contained in:
parent
e2e23c0045
commit
cc19fbe177
2 changed files with 10 additions and 1 deletions
|
@ -53,6 +53,7 @@ Please use that command to update the file and do not edit it by hand.
|
|||
| [ignore-interior-mutability](#ignore-interior-mutability) | `["bytes::Bytes"]` |
|
||||
| [allow-mixed-uninlined-format-args](#allow-mixed-uninlined-format-args) | `true` |
|
||||
| [suppress-restriction-lint-in-const](#suppress-restriction-lint-in-const) | `false` |
|
||||
| [missing-docs-in-crate-items](#missing-docs-in-crate-items) | `false` |
|
||||
|
||||
### arithmetic-side-effects-allowed
|
||||
Suppress checking of the passed type names in all types of operations.
|
||||
|
@ -540,4 +541,12 @@ if no suggestion can be made.
|
|||
* [indexing_slicing](https://rust-lang.github.io/rust-clippy/master/index.html#indexing_slicing)
|
||||
|
||||
|
||||
### missing-docs-in-crate-items
|
||||
Whether to **only** check for missing documentation in `pub(crate)` items.
|
||||
|
||||
**Default Value:** `false` (`bool`)
|
||||
|
||||
* [missing_docs_in_private_items](https://rust-lang.github.io/rust-clippy/master/index.html#missing_docs_in_private_items)
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -456,7 +456,7 @@ define_Conf! {
|
|||
(suppress_restriction_lint_in_const: bool = false),
|
||||
/// Lint: MISSING_DOCS_IN_PRIVATE_ITEMS.
|
||||
///
|
||||
/// Whether to **only** check for missing docmuentation in `pub(crate)` items.
|
||||
/// Whether to **only** check for missing documentation in `pub(crate)` items.
|
||||
(missing_docs_in_crate_items: bool = false),
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue