Update lint_configuration.md
This commit is contained in:
parent
e3ee10d428
commit
8c8cf40707
@ -13,6 +13,8 @@ Please use that command to update the file and do not edit it by hand.
|
|||||||
| [msrv](#msrv) | `None` |
|
| [msrv](#msrv) | `None` |
|
||||||
| [cognitive-complexity-threshold](#cognitive-complexity-threshold) | `25` |
|
| [cognitive-complexity-threshold](#cognitive-complexity-threshold) | `25` |
|
||||||
| [disallowed-names](#disallowed-names) | `["foo", "baz", "quux"]` |
|
| [disallowed-names](#disallowed-names) | `["foo", "baz", "quux"]` |
|
||||||
|
| [semicolon-inside-block-ignore-singleline](#semicolon-inside-block-ignore-singleline) | `false` |
|
||||||
|
| [semicolon-outside-block-ignore-multiline](#semicolon-outside-block-ignore-multiline) | `false` |
|
||||||
| [doc-valid-idents](#doc-valid-idents) | `["KiB", "MiB", "GiB", "TiB", "PiB", "EiB", "DirectX", "ECMAScript", "GPLv2", "GPLv3", "GitHub", "GitLab", "IPv4", "IPv6", "ClojureScript", "CoffeeScript", "JavaScript", "PureScript", "TypeScript", "NaN", "NaNs", "OAuth", "GraphQL", "OCaml", "OpenGL", "OpenMP", "OpenSSH", "OpenSSL", "OpenStreetMap", "OpenDNS", "WebGL", "TensorFlow", "TrueType", "iOS", "macOS", "FreeBSD", "TeX", "LaTeX", "BibTeX", "BibLaTeX", "MinGW", "CamelCase"]` |
|
| [doc-valid-idents](#doc-valid-idents) | `["KiB", "MiB", "GiB", "TiB", "PiB", "EiB", "DirectX", "ECMAScript", "GPLv2", "GPLv3", "GitHub", "GitLab", "IPv4", "IPv6", "ClojureScript", "CoffeeScript", "JavaScript", "PureScript", "TypeScript", "NaN", "NaNs", "OAuth", "GraphQL", "OCaml", "OpenGL", "OpenMP", "OpenSSH", "OpenSSL", "OpenStreetMap", "OpenDNS", "WebGL", "TensorFlow", "TrueType", "iOS", "macOS", "FreeBSD", "TeX", "LaTeX", "BibTeX", "BibLaTeX", "MinGW", "CamelCase"]` |
|
||||||
| [too-many-arguments-threshold](#too-many-arguments-threshold) | `7` |
|
| [too-many-arguments-threshold](#too-many-arguments-threshold) | `7` |
|
||||||
| [type-complexity-threshold](#type-complexity-threshold) | `250` |
|
| [type-complexity-threshold](#type-complexity-threshold) | `250` |
|
||||||
@ -202,6 +204,22 @@ default configuration of Clippy. By default, any configuration will replace the
|
|||||||
* [disallowed_names](https://rust-lang.github.io/rust-clippy/master/index.html#disallowed_names)
|
* [disallowed_names](https://rust-lang.github.io/rust-clippy/master/index.html#disallowed_names)
|
||||||
|
|
||||||
|
|
||||||
|
### semicolon-inside-block-ignore-singleline
|
||||||
|
Whether to lint only if it's multiline.
|
||||||
|
|
||||||
|
**Default Value:** `false` (`bool`)
|
||||||
|
|
||||||
|
* [semicolon_inside_block](https://rust-lang.github.io/rust-clippy/master/index.html#semicolon_inside_block)
|
||||||
|
|
||||||
|
|
||||||
|
### semicolon-outside-block-ignore-multiline
|
||||||
|
Whether to lint only if it's singleline.
|
||||||
|
|
||||||
|
**Default Value:** `false` (`bool`)
|
||||||
|
|
||||||
|
* [semicolon_outside_block](https://rust-lang.github.io/rust-clippy/master/index.html#semicolon_outside_block)
|
||||||
|
|
||||||
|
|
||||||
### doc-valid-idents
|
### doc-valid-idents
|
||||||
The list of words this lint should not consider as identifiers needing ticks. The value
|
The list of words this lint should not consider as identifiers needing ticks. The value
|
||||||
`".."` can be used as part of the list to indicate, that the configured values should be appended to the
|
`".."` can be used as part of the list to indicate, that the configured values should be appended to the
|
||||||
|
Loading…
Reference in New Issue
Block a user