2023-01-27 20:09:08 +00:00
|
|
|
<!--
|
2024-08-05 14:08:04 +00:00
|
|
|
This file is generated by `cargo bless --test config-metadata`.
|
2023-01-27 20:09:08 +00:00
|
|
|
Please use that command to update the file and do not edit it by hand.
|
|
|
|
-->
|
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
# Lint Configuration Options
|
|
|
|
|
|
|
|
The following list shows each configuration option, along with a description, its default value, an example
|
|
|
|
and lints affected.
|
|
|
|
|
|
|
|
---
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `absolute-paths-allowed-crates`
|
|
|
|
Which crates to allow absolute paths from
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `[]`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
|
|
|
* [`absolute_paths`](https://rust-lang.github.io/rust-clippy/master/index.html#absolute_paths)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `absolute-paths-max-segments`
|
|
|
|
The maximum number of segments a path can have before being linted, anything above this will
|
|
|
|
be linted.
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `2`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`absolute_paths`](https://rust-lang.github.io/rust-clippy/master/index.html#absolute_paths)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `accept-comment-above-attributes`
|
|
|
|
Whether to accept a safety comment to be placed above the attributes for the `unsafe` block
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `true`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
|
|
|
* [`undocumented_unsafe_blocks`](https://rust-lang.github.io/rust-clippy/master/index.html#undocumented_unsafe_blocks)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `accept-comment-above-statement`
|
|
|
|
Whether to accept a safety comment to be placed above the statement containing the `unsafe` block
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `true`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`undocumented_unsafe_blocks`](https://rust-lang.github.io/rust-clippy/master/index.html#undocumented_unsafe_blocks)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `allow-comparison-to-zero`
|
|
|
|
Don't lint when comparing the result of a modulo operation to zero.
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `true`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
|
|
|
* [`modulo_arithmetic`](https://rust-lang.github.io/rust-clippy/master/index.html#modulo_arithmetic)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
|
|
|
|
## `allow-dbg-in-tests`
|
|
|
|
Whether `dbg!` should be allowed in test functions or `#[cfg(test)]`
|
|
|
|
|
|
|
|
**Default Value:** `false`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`dbg_macro`](https://rust-lang.github.io/rust-clippy/master/index.html#dbg_macro)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `allow-expect-in-tests`
|
|
|
|
Whether `expect` should be allowed in test functions or `#[cfg(test)]`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `false`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`expect_used`](https://rust-lang.github.io/rust-clippy/master/index.html#expect_used)
|
2023-07-02 12:35:19 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `allow-mixed-uninlined-format-args`
|
|
|
|
Whether to allow mixed uninlined format args, e.g. `format!("{} {}", a, foo.bar)`
|
|
|
|
|
|
|
|
**Default Value:** `true`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
|
|
|
* [`uninlined_format_args`](https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args)
|
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `allow-one-hash-in-raw-strings`
|
|
|
|
Whether to allow `r#""#` when `r""` can be used
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `false`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`unnecessary_raw_string_hashes`](https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_raw_string_hashes)
|
2023-07-02 12:35:19 +00:00
|
|
|
|
|
|
|
|
2024-05-21 17:39:30 +00:00
|
|
|
## `allow-panic-in-tests`
|
|
|
|
Whether `panic` should be allowed in test functions or `#[cfg(test)]`
|
|
|
|
|
|
|
|
**Default Value:** `false`
|
|
|
|
|
|
|
|
---
|
|
|
|
**Affected lints:**
|
|
|
|
* [`panic`](https://rust-lang.github.io/rust-clippy/master/index.html#panic)
|
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `allow-print-in-tests`
|
|
|
|
Whether print macros (ex. `println!`) should be allowed in test functions or `#[cfg(test)]`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `false`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`print_stderr`](https://rust-lang.github.io/rust-clippy/master/index.html#print_stderr)
|
|
|
|
* [`print_stdout`](https://rust-lang.github.io/rust-clippy/master/index.html#print_stdout)
|
2023-07-02 12:35:19 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `allow-private-module-inception`
|
|
|
|
Whether to allow module inception if it's not public.
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `false`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`module_inception`](https://rust-lang.github.io/rust-clippy/master/index.html#module_inception)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-05-21 17:39:30 +00:00
|
|
|
## `allow-renamed-params-for`
|
|
|
|
List of trait paths to ignore when checking renamed function parameters.
|
|
|
|
|
|
|
|
#### Example
|
|
|
|
|
|
|
|
```toml
|
|
|
|
allow-renamed-params-for = [ "std::convert::From" ]
|
|
|
|
```
|
|
|
|
|
|
|
|
#### Noteworthy
|
|
|
|
|
|
|
|
- By default, the following traits are ignored: `From`, `TryFrom`, `FromStr`
|
|
|
|
- `".."` can be used as part of the list to indicate that the configured values should be appended to the
|
|
|
|
default configuration of Clippy. By default, any configuration will replace the default value.
|
|
|
|
|
|
|
|
**Default Value:** `["core::convert::From", "core::convert::TryFrom", "core::str::FromStr"]`
|
|
|
|
|
|
|
|
---
|
|
|
|
**Affected lints:**
|
|
|
|
* [`renamed_function_params`](https://rust-lang.github.io/rust-clippy/master/index.html#renamed_function_params)
|
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `allow-unwrap-in-tests`
|
|
|
|
Whether `unwrap` should be allowed in test functions or `#[cfg(test)]`
|
2023-05-05 15:45:49 +00:00
|
|
|
|
2023-11-02 16:35:56 +00:00
|
|
|
**Default Value:** `false`
|
2023-05-05 15:45:49 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`unwrap_used`](https://rust-lang.github.io/rust-clippy/master/index.html#unwrap_used)
|
2023-05-05 15:45:49 +00:00
|
|
|
|
|
|
|
|
2024-05-02 15:26:44 +00:00
|
|
|
## `allow-useless-vec-in-tests`
|
|
|
|
Whether `useless_vec` should ignore test functions or `#[cfg(test)]`
|
|
|
|
|
|
|
|
**Default Value:** `false`
|
|
|
|
|
|
|
|
---
|
|
|
|
**Affected lints:**
|
|
|
|
* [`useless_vec`](https://rust-lang.github.io/rust-clippy/master/index.html#useless_vec)
|
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `allowed-dotfiles`
|
|
|
|
Additional dotfiles (files or directories starting with a dot) to allow
|
2023-05-05 15:45:49 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `[]`
|
2023-05-05 15:45:49 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`path_ends_with_ext`](https://rust-lang.github.io/rust-clippy/master/index.html#path_ends_with_ext)
|
2023-05-05 15:45:49 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `allowed-duplicate-crates`
|
|
|
|
A list of crate names to allow duplicates of
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `[]`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`multiple_crate_versions`](https://rust-lang.github.io/rust-clippy/master/index.html#multiple_crate_versions)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `allowed-idents-below-min-chars`
|
|
|
|
Allowed names below the minimum allowed characters. The value `".."` can be used as part of
|
|
|
|
the list to indicate, that the configured values should be appended to the default
|
|
|
|
configuration of Clippy. By default, any configuration will replace the default value.
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-08-12 16:25:14 +00:00
|
|
|
**Default Value:** `["i", "j", "x", "y", "z", "w", "n"]`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`min_ident_chars`](https://rust-lang.github.io/rust-clippy/master/index.html#min_ident_chars)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-04-18 15:48:52 +00:00
|
|
|
## `allowed-prefixes`
|
|
|
|
List of prefixes to allow when determining whether an item's name ends with the module's name.
|
|
|
|
If the rest of an item's name is an allowed prefix (e.g. item `ToFoo` or `to_foo` in module `foo`),
|
|
|
|
then don't emit a warning.
|
|
|
|
|
|
|
|
#### Example
|
|
|
|
|
|
|
|
```toml
|
|
|
|
allowed-prefixes = [ "to", "from" ]
|
|
|
|
```
|
|
|
|
|
|
|
|
#### Noteworthy
|
|
|
|
|
|
|
|
- By default, the following prefixes are allowed: `to`, `as`, `into`, `from`, `try_into` and `try_from`
|
|
|
|
- PascalCase variant is included automatically for each snake_case variant (e.g. if `try_into` is included,
|
|
|
|
`TryInto` will also be included)
|
|
|
|
- Use `".."` as part of the list to indicate that the configured values should be appended to the
|
|
|
|
default configuration of Clippy. By default, any configuration will replace the default value
|
|
|
|
|
|
|
|
**Default Value:** `["to", "as", "into", "from", "try_into", "try_from"]`
|
|
|
|
|
|
|
|
---
|
|
|
|
**Affected lints:**
|
|
|
|
* [`module_name_repetitions`](https://rust-lang.github.io/rust-clippy/master/index.html#module_name_repetitions)
|
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `allowed-scripts`
|
|
|
|
The list of unicode scripts allowed to be used in the scope.
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `["Latin"]`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`disallowed_script_idents`](https://rust-lang.github.io/rust-clippy/master/index.html#disallowed_script_idents)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `allowed-wildcard-imports`
|
|
|
|
List of path segments allowed to have wildcard imports.
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
#### Example
|
|
|
|
|
|
|
|
```toml
|
|
|
|
allowed-wildcard-imports = [ "utils", "common" ]
|
|
|
|
```
|
|
|
|
|
|
|
|
#### Noteworthy
|
|
|
|
|
|
|
|
1. This configuration has no effects if used with `warn_on_all_wildcard_imports = true`.
|
|
|
|
2. Paths with any segment that containing the word 'prelude'
|
|
|
|
are already allowed by default.
|
|
|
|
|
|
|
|
**Default Value:** `[]`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`wildcard_imports`](https://rust-lang.github.io/rust-clippy/master/index.html#wildcard_imports)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `arithmetic-side-effects-allowed`
|
|
|
|
Suppress checking of the passed type names in all types of operations.
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
If a specific operation is desired, consider using `arithmetic_side_effects_allowed_binary` or `arithmetic_side_effects_allowed_unary` instead.
|
|
|
|
|
|
|
|
#### Example
|
|
|
|
|
|
|
|
```toml
|
|
|
|
arithmetic-side-effects-allowed = ["SomeType", "AnotherType"]
|
|
|
|
```
|
|
|
|
|
|
|
|
#### Noteworthy
|
|
|
|
|
|
|
|
A type, say `SomeType`, listed in this configuration has the same behavior of
|
|
|
|
`["SomeType" , "*"], ["*", "SomeType"]` in `arithmetic_side_effects_allowed_binary`.
|
|
|
|
|
|
|
|
**Default Value:** `[]`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`arithmetic_side_effects`](https://rust-lang.github.io/rust-clippy/master/index.html#arithmetic_side_effects)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `arithmetic-side-effects-allowed-binary`
|
|
|
|
Suppress checking of the passed type pair names in binary operations like addition or
|
|
|
|
multiplication.
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
Supports the "*" wildcard to indicate that a certain type won't trigger the lint regardless
|
|
|
|
of the involved counterpart. For example, `["SomeType", "*"]` or `["*", "AnotherType"]`.
|
|
|
|
|
|
|
|
Pairs are asymmetric, which means that `["SomeType", "AnotherType"]` is not the same as
|
|
|
|
`["AnotherType", "SomeType"]`.
|
|
|
|
|
|
|
|
#### Example
|
|
|
|
|
|
|
|
```toml
|
|
|
|
arithmetic-side-effects-allowed-binary = [["SomeType" , "f32"], ["AnotherType", "*"]]
|
|
|
|
```
|
|
|
|
|
|
|
|
**Default Value:** `[]`
|
|
|
|
|
|
|
|
---
|
|
|
|
**Affected lints:**
|
|
|
|
* [`arithmetic_side_effects`](https://rust-lang.github.io/rust-clippy/master/index.html#arithmetic_side_effects)
|
|
|
|
|
|
|
|
|
|
|
|
## `arithmetic-side-effects-allowed-unary`
|
|
|
|
Suppress checking of the passed type names in unary operations like "negation" (`-`).
|
|
|
|
|
|
|
|
#### Example
|
|
|
|
|
|
|
|
```toml
|
|
|
|
arithmetic-side-effects-allowed-unary = ["SomeType", "AnotherType"]
|
|
|
|
```
|
|
|
|
|
|
|
|
**Default Value:** `[]`
|
|
|
|
|
|
|
|
---
|
|
|
|
**Affected lints:**
|
|
|
|
* [`arithmetic_side_effects`](https://rust-lang.github.io/rust-clippy/master/index.html#arithmetic_side_effects)
|
|
|
|
|
|
|
|
|
|
|
|
## `array-size-threshold`
|
|
|
|
The maximum allowed size for arrays on the stack
|
|
|
|
|
|
|
|
**Default Value:** `512000`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`large_const_arrays`](https://rust-lang.github.io/rust-clippy/master/index.html#large_const_arrays)
|
|
|
|
* [`large_stack_arrays`](https://rust-lang.github.io/rust-clippy/master/index.html#large_stack_arrays)
|
|
|
|
|
|
|
|
|
|
|
|
## `avoid-breaking-exported-api`
|
|
|
|
Suppress lints whenever the suggested change would cause breakage for other crates.
|
|
|
|
|
|
|
|
**Default Value:** `true`
|
|
|
|
|
|
|
|
---
|
|
|
|
**Affected lints:**
|
|
|
|
* [`box_collection`](https://rust-lang.github.io/rust-clippy/master/index.html#box_collection)
|
2023-07-02 12:35:19 +00:00
|
|
|
* [`enum_variant_names`](https://rust-lang.github.io/rust-clippy/master/index.html#enum_variant_names)
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`large_types_passed_by_value`](https://rust-lang.github.io/rust-clippy/master/index.html#large_types_passed_by_value)
|
|
|
|
* [`linkedlist`](https://rust-lang.github.io/rust-clippy/master/index.html#linkedlist)
|
2024-07-03 07:52:56 +00:00
|
|
|
* [`needless_pass_by_ref_mut`](https://rust-lang.github.io/rust-clippy/master/index.html#needless_pass_by_ref_mut)
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`option_option`](https://rust-lang.github.io/rust-clippy/master/index.html#option_option)
|
|
|
|
* [`rc_buffer`](https://rust-lang.github.io/rust-clippy/master/index.html#rc_buffer)
|
|
|
|
* [`rc_mutex`](https://rust-lang.github.io/rust-clippy/master/index.html#rc_mutex)
|
|
|
|
* [`redundant_allocation`](https://rust-lang.github.io/rust-clippy/master/index.html#redundant_allocation)
|
|
|
|
* [`single_call_fn`](https://rust-lang.github.io/rust-clippy/master/index.html#single_call_fn)
|
|
|
|
* [`trivially_copy_pass_by_ref`](https://rust-lang.github.io/rust-clippy/master/index.html#trivially_copy_pass_by_ref)
|
|
|
|
* [`unnecessary_box_returns`](https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_box_returns)
|
|
|
|
* [`unnecessary_wraps`](https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_wraps)
|
|
|
|
* [`unused_self`](https://rust-lang.github.io/rust-clippy/master/index.html#unused_self)
|
|
|
|
* [`upper_case_acronyms`](https://rust-lang.github.io/rust-clippy/master/index.html#upper_case_acronyms)
|
|
|
|
* [`vec_box`](https://rust-lang.github.io/rust-clippy/master/index.html#vec_box)
|
|
|
|
* [`wrong_self_convention`](https://rust-lang.github.io/rust-clippy/master/index.html#wrong_self_convention)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `await-holding-invalid-types`
|
2024-07-27 22:17:26 +00:00
|
|
|
The list of types which may not be held across an await point.
|
2024-03-07 16:19:29 +00:00
|
|
|
|
|
|
|
**Default Value:** `[]`
|
2023-10-21 12:16:11 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`await_holding_invalid_type`](https://rust-lang.github.io/rust-clippy/master/index.html#await_holding_invalid_type)
|
2023-10-21 12:16:11 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `cargo-ignore-publish`
|
|
|
|
For internal testing only, ignores the current `publish` settings in the Cargo manifest.
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `false`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`cargo_common_metadata`](https://rust-lang.github.io/rust-clippy/master/index.html#cargo_common_metadata)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `check-private-items`
|
|
|
|
Whether to also run the listed lints on private items.
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `false`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`missing_errors_doc`](https://rust-lang.github.io/rust-clippy/master/index.html#missing_errors_doc)
|
|
|
|
* [`missing_panics_doc`](https://rust-lang.github.io/rust-clippy/master/index.html#missing_panics_doc)
|
|
|
|
* [`missing_safety_doc`](https://rust-lang.github.io/rust-clippy/master/index.html#missing_safety_doc)
|
|
|
|
* [`unnecessary_safety_doc`](https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_safety_doc)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `cognitive-complexity-threshold`
|
|
|
|
The maximum cognitive complexity a function can have
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `25`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`cognitive_complexity`](https://rust-lang.github.io/rust-clippy/master/index.html#cognitive_complexity)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `disallowed-macros`
|
|
|
|
The list of disallowed macros, written as fully qualified paths.
|
|
|
|
|
|
|
|
**Default Value:** `[]`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`disallowed_macros`](https://rust-lang.github.io/rust-clippy/master/index.html#disallowed_macros)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `disallowed-methods`
|
|
|
|
The list of disallowed methods, written as fully qualified paths.
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `[]`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`disallowed_methods`](https://rust-lang.github.io/rust-clippy/master/index.html#disallowed_methods)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `disallowed-names`
|
|
|
|
The list of disallowed names to lint about. NB: `bar` is not here since it has legitimate uses. The value
|
|
|
|
`".."` can be used as part of the list to indicate that the configured values should be appended to the
|
|
|
|
default configuration of Clippy. By default, any configuration will replace the default value.
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `["foo", "baz", "quux"]`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`disallowed_names`](https://rust-lang.github.io/rust-clippy/master/index.html#disallowed_names)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `disallowed-types`
|
|
|
|
The list of disallowed types, written as fully qualified paths.
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `[]`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`disallowed_types`](https://rust-lang.github.io/rust-clippy/master/index.html#disallowed_types)
|
2023-07-02 12:35:19 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `doc-valid-idents`
|
|
|
|
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
|
|
|
|
default configuration of Clippy. By default, any configuration will replace the default value. For example:
|
|
|
|
* `doc-valid-idents = ["ClipPy"]` would replace the default list with `["ClipPy"]`.
|
|
|
|
* `doc-valid-idents = ["ClipPy", ".."]` would append `ClipPy` to the default list.
|
2023-07-02 12:35:19 +00:00
|
|
|
|
2024-08-12 16:25:14 +00:00
|
|
|
**Default Value:** `["KiB", "MiB", "GiB", "TiB", "PiB", "EiB", "AccessKit", "CoreFoundation", "CoreGraphics", "CoreText", "DevOps", "Direct2D", "Direct3D", "DirectWrite", "DirectX", "ECMAScript", "GPLv2", "GPLv3", "GitHub", "GitLab", "IPv4", "IPv6", "ClojureScript", "CoffeeScript", "JavaScript", "PostScript", "PureScript", "TypeScript", "WebAssembly", "NaN", "NaNs", "OAuth", "GraphQL", "OCaml", "OpenAL", "OpenDNS", "OpenGL", "OpenMP", "OpenSSH", "OpenSSL", "OpenStreetMap", "OpenTelemetry", "OpenType", "WebGL", "WebGL2", "WebGPU", "WebRTC", "WebSocket", "WebTransport", "WebP", "OpenExr", "YCbCr", "sRGB", "TensorFlow", "TrueType", "iOS", "macOS", "FreeBSD", "NetBSD", "OpenBSD", "TeX", "LaTeX", "BibTeX", "BibLaTeX", "MinGW", "CamelCase"]`
|
2023-07-02 12:35:19 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`doc_markdown`](https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `enable-raw-pointer-heuristic-for-send`
|
|
|
|
Whether to apply the raw pointer heuristic to determine if a type is `Send`.
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `true`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`non_send_fields_in_send_ty`](https://rust-lang.github.io/rust-clippy/master/index.html#non_send_fields_in_send_ty)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `enforce-iter-loop-reborrow`
|
|
|
|
Whether to recommend using implicit into iter for reborrowed values.
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
#### Example
|
|
|
|
```no_run
|
|
|
|
let mut vec = vec![1, 2, 3];
|
|
|
|
let rmvec = &mut vec;
|
|
|
|
for _ in rmvec.iter() {}
|
|
|
|
for _ in rmvec.iter_mut() {}
|
|
|
|
```
|
|
|
|
|
|
|
|
Use instead:
|
|
|
|
```no_run
|
|
|
|
let mut vec = vec![1, 2, 3];
|
|
|
|
let rmvec = &mut vec;
|
|
|
|
for _ in &*rmvec {}
|
|
|
|
for _ in &mut *rmvec {}
|
|
|
|
```
|
|
|
|
|
|
|
|
**Default Value:** `false`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`explicit_iter_loop`](https://rust-lang.github.io/rust-clippy/master/index.html#explicit_iter_loop)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `enforced-import-renames`
|
|
|
|
The list of imports to always rename, a fully qualified path followed by the rename.
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `[]`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`missing_enforced_import_renames`](https://rust-lang.github.io/rust-clippy/master/index.html#missing_enforced_import_renames)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `enum-variant-name-threshold`
|
|
|
|
The minimum number of enum variants for the lints about variant names to trigger
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-11-02 16:35:56 +00:00
|
|
|
**Default Value:** `3`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`enum_variant_names`](https://rust-lang.github.io/rust-clippy/master/index.html#enum_variant_names)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `enum-variant-size-threshold`
|
|
|
|
The maximum size of an enum's variant to avoid box suggestion
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `200`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`large_enum_variant`](https://rust-lang.github.io/rust-clippy/master/index.html#large_enum_variant)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `excessive-nesting-threshold`
|
|
|
|
The maximum amount of nesting a block can reside in
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `0`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`excessive_nesting`](https://rust-lang.github.io/rust-clippy/master/index.html#excessive_nesting)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `future-size-threshold`
|
|
|
|
The maximum byte size a `Future` can have, before it triggers the `clippy::large_futures` lint
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `16384`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`large_futures`](https://rust-lang.github.io/rust-clippy/master/index.html#large_futures)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `ignore-interior-mutability`
|
2024-05-02 15:26:44 +00:00
|
|
|
A list of paths to types that should be treated as if they do not contain interior mutability
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `["bytes::Bytes"]`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-05-02 15:26:44 +00:00
|
|
|
* [`borrow_interior_mutable_const`](https://rust-lang.github.io/rust-clippy/master/index.html#borrow_interior_mutable_const)
|
|
|
|
* [`declare_interior_mutable_const`](https://rust-lang.github.io/rust-clippy/master/index.html#declare_interior_mutable_const)
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`ifs_same_cond`](https://rust-lang.github.io/rust-clippy/master/index.html#ifs_same_cond)
|
|
|
|
* [`mutable_key_type`](https://rust-lang.github.io/rust-clippy/master/index.html#mutable_key_type)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `large-error-threshold`
|
|
|
|
The maximum size of the `Err`-variant in a `Result` returned from a function
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `128`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`result_large_err`](https://rust-lang.github.io/rust-clippy/master/index.html#result_large_err)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `literal-representation-threshold`
|
|
|
|
The lower bound for linting decimal literals
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `16384`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`decimal_literal_representation`](https://rust-lang.github.io/rust-clippy/master/index.html#decimal_literal_representation)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
## `matches-for-let-else`
|
2023-01-27 20:09:08 +00:00
|
|
|
Whether the matches should be considered by the lint, and whether there should
|
|
|
|
be filtering for common types.
|
|
|
|
|
2023-11-02 16:35:56 +00:00
|
|
|
**Default Value:** `"WellKnownTypes"`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
|
|
|
* [`manual_let_else`](https://rust-lang.github.io/rust-clippy/master/index.html#manual_let_else)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `max-fn-params-bools`
|
|
|
|
The maximum number of bool parameters a function can have
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `3`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`fn_params_excessive_bools`](https://rust-lang.github.io/rust-clippy/master/index.html#fn_params_excessive_bools)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `max-include-file-size`
|
|
|
|
The maximum size of a file included via `include_bytes!()` or `include_str!()`, in bytes
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `1000000`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`large_include_file`](https://rust-lang.github.io/rust-clippy/master/index.html#large_include_file)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `max-struct-bools`
|
|
|
|
The maximum number of bool fields a struct can have
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `3`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`struct_excessive_bools`](https://rust-lang.github.io/rust-clippy/master/index.html#struct_excessive_bools)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `max-suggested-slice-pattern-length`
|
|
|
|
When Clippy suggests using a slice pattern, this is the maximum number of elements allowed in
|
|
|
|
the slice pattern that is suggested. If more elements are necessary, the lint is suppressed.
|
|
|
|
For example, `[_, _, _, e, ..]` is a slice pattern with 4 elements.
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `3`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`index_refutable_slice`](https://rust-lang.github.io/rust-clippy/master/index.html#index_refutable_slice)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `max-trait-bounds`
|
|
|
|
The maximum number of bounds a trait can have to be linted
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `3`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`type_repetition_in_bounds`](https://rust-lang.github.io/rust-clippy/master/index.html#type_repetition_in_bounds)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `min-ident-chars-threshold`
|
|
|
|
Minimum chars an ident can have, anything below or equal to this will be linted.
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `1`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`min_ident_chars`](https://rust-lang.github.io/rust-clippy/master/index.html#min_ident_chars)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `missing-docs-in-crate-items`
|
|
|
|
Whether to **only** check for missing documentation in items visible within the current
|
|
|
|
crate. For example, `pub(crate)` items.
|
2023-02-10 13:01:19 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `false`
|
2023-02-10 13:01:19 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
|
|
|
* [`missing_docs_in_private_items`](https://rust-lang.github.io/rust-clippy/master/index.html#missing_docs_in_private_items)
|
|
|
|
|
|
|
|
|
|
|
|
## `msrv`
|
|
|
|
The minimum rust version that the project supports. Defaults to the `rust-version` field in `Cargo.toml`
|
2023-02-10 13:01:19 +00:00
|
|
|
|
2024-07-28 03:34:16 +00:00
|
|
|
**Default Value:** `current version`
|
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-02-10 22:31:36 +00:00
|
|
|
* [`allow_attributes`](https://rust-lang.github.io/rust-clippy/master/index.html#allow_attributes)
|
|
|
|
* [`allow_attributes_without_reason`](https://rust-lang.github.io/rust-clippy/master/index.html#allow_attributes_without_reason)
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`almost_complete_range`](https://rust-lang.github.io/rust-clippy/master/index.html#almost_complete_range)
|
|
|
|
* [`approx_constant`](https://rust-lang.github.io/rust-clippy/master/index.html#approx_constant)
|
2024-03-21 21:20:40 +00:00
|
|
|
* [`assigning_clones`](https://rust-lang.github.io/rust-clippy/master/index.html#assigning_clones)
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`borrow_as_ptr`](https://rust-lang.github.io/rust-clippy/master/index.html#borrow_as_ptr)
|
|
|
|
* [`cast_abs_to_unsigned`](https://rust-lang.github.io/rust-clippy/master/index.html#cast_abs_to_unsigned)
|
|
|
|
* [`checked_conversions`](https://rust-lang.github.io/rust-clippy/master/index.html#checked_conversions)
|
|
|
|
* [`cloned_instead_of_copied`](https://rust-lang.github.io/rust-clippy/master/index.html#cloned_instead_of_copied)
|
2024-07-18 18:13:39 +00:00
|
|
|
* [`collapsible_match`](https://rust-lang.github.io/rust-clippy/master/index.html#collapsible_match)
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`collapsible_str_replace`](https://rust-lang.github.io/rust-clippy/master/index.html#collapsible_str_replace)
|
|
|
|
* [`deprecated_cfg_attr`](https://rust-lang.github.io/rust-clippy/master/index.html#deprecated_cfg_attr)
|
|
|
|
* [`derivable_impls`](https://rust-lang.github.io/rust-clippy/master/index.html#derivable_impls)
|
|
|
|
* [`err_expect`](https://rust-lang.github.io/rust-clippy/master/index.html#err_expect)
|
|
|
|
* [`filter_map_next`](https://rust-lang.github.io/rust-clippy/master/index.html#filter_map_next)
|
|
|
|
* [`from_over_into`](https://rust-lang.github.io/rust-clippy/master/index.html#from_over_into)
|
|
|
|
* [`if_then_some_else_none`](https://rust-lang.github.io/rust-clippy/master/index.html#if_then_some_else_none)
|
|
|
|
* [`index_refutable_slice`](https://rust-lang.github.io/rust-clippy/master/index.html#index_refutable_slice)
|
|
|
|
* [`iter_kv_map`](https://rust-lang.github.io/rust-clippy/master/index.html#iter_kv_map)
|
2024-04-04 17:52:55 +00:00
|
|
|
* [`legacy_numeric_constants`](https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants)
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`manual_bits`](https://rust-lang.github.io/rust-clippy/master/index.html#manual_bits)
|
|
|
|
* [`manual_c_str_literals`](https://rust-lang.github.io/rust-clippy/master/index.html#manual_c_str_literals)
|
|
|
|
* [`manual_clamp`](https://rust-lang.github.io/rust-clippy/master/index.html#manual_clamp)
|
|
|
|
* [`manual_hash_one`](https://rust-lang.github.io/rust-clippy/master/index.html#manual_hash_one)
|
|
|
|
* [`manual_is_ascii_check`](https://rust-lang.github.io/rust-clippy/master/index.html#manual_is_ascii_check)
|
|
|
|
* [`manual_let_else`](https://rust-lang.github.io/rust-clippy/master/index.html#manual_let_else)
|
|
|
|
* [`manual_non_exhaustive`](https://rust-lang.github.io/rust-clippy/master/index.html#manual_non_exhaustive)
|
2024-06-15 19:45:35 +00:00
|
|
|
* [`manual_pattern_char_comparison`](https://rust-lang.github.io/rust-clippy/master/index.html#manual_pattern_char_comparison)
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`manual_range_contains`](https://rust-lang.github.io/rust-clippy/master/index.html#manual_range_contains)
|
|
|
|
* [`manual_rem_euclid`](https://rust-lang.github.io/rust-clippy/master/index.html#manual_rem_euclid)
|
|
|
|
* [`manual_retain`](https://rust-lang.github.io/rust-clippy/master/index.html#manual_retain)
|
|
|
|
* [`manual_split_once`](https://rust-lang.github.io/rust-clippy/master/index.html#manual_split_once)
|
|
|
|
* [`manual_str_repeat`](https://rust-lang.github.io/rust-clippy/master/index.html#manual_str_repeat)
|
|
|
|
* [`manual_strip`](https://rust-lang.github.io/rust-clippy/master/index.html#manual_strip)
|
|
|
|
* [`manual_try_fold`](https://rust-lang.github.io/rust-clippy/master/index.html#manual_try_fold)
|
|
|
|
* [`map_clone`](https://rust-lang.github.io/rust-clippy/master/index.html#map_clone)
|
|
|
|
* [`map_unwrap_or`](https://rust-lang.github.io/rust-clippy/master/index.html#map_unwrap_or)
|
|
|
|
* [`match_like_matches_macro`](https://rust-lang.github.io/rust-clippy/master/index.html#match_like_matches_macro)
|
|
|
|
* [`mem_replace_with_default`](https://rust-lang.github.io/rust-clippy/master/index.html#mem_replace_with_default)
|
|
|
|
* [`missing_const_for_fn`](https://rust-lang.github.io/rust-clippy/master/index.html#missing_const_for_fn)
|
|
|
|
* [`needless_borrow`](https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow)
|
|
|
|
* [`option_as_ref_deref`](https://rust-lang.github.io/rust-clippy/master/index.html#option_as_ref_deref)
|
|
|
|
* [`option_map_unwrap_or`](https://rust-lang.github.io/rust-clippy/master/index.html#option_map_unwrap_or)
|
|
|
|
* [`ptr_as_ptr`](https://rust-lang.github.io/rust-clippy/master/index.html#ptr_as_ptr)
|
|
|
|
* [`redundant_field_names`](https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names)
|
|
|
|
* [`redundant_static_lifetimes`](https://rust-lang.github.io/rust-clippy/master/index.html#redundant_static_lifetimes)
|
|
|
|
* [`seek_from_current`](https://rust-lang.github.io/rust-clippy/master/index.html#seek_from_current)
|
|
|
|
* [`seek_rewind`](https://rust-lang.github.io/rust-clippy/master/index.html#seek_rewind)
|
|
|
|
* [`transmute_ptr_to_ref`](https://rust-lang.github.io/rust-clippy/master/index.html#transmute_ptr_to_ref)
|
|
|
|
* [`tuple_array_conversions`](https://rust-lang.github.io/rust-clippy/master/index.html#tuple_array_conversions)
|
|
|
|
* [`type_repetition_in_bounds`](https://rust-lang.github.io/rust-clippy/master/index.html#type_repetition_in_bounds)
|
|
|
|
* [`unchecked_duration_subtraction`](https://rust-lang.github.io/rust-clippy/master/index.html#unchecked_duration_subtraction)
|
|
|
|
* [`uninlined_format_args`](https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args)
|
|
|
|
* [`unnecessary_lazy_evaluations`](https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_lazy_evaluations)
|
|
|
|
* [`unnested_or_patterns`](https://rust-lang.github.io/rust-clippy/master/index.html#unnested_or_patterns)
|
2024-09-20 23:54:20 +00:00
|
|
|
* [`unused_trait_names`](https://rust-lang.github.io/rust-clippy/master/index.html#unused_trait_names)
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`use_self`](https://rust-lang.github.io/rust-clippy/master/index.html#use_self)
|
2023-02-10 13:01:19 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `pass-by-value-size-limit`
|
|
|
|
The minimum size (in bytes) to consider a type for passing by reference instead of by value.
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `256`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`large_types_passed_by_value`](https://rust-lang.github.io/rust-clippy/master/index.html#large_types_passed_by_value)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `pub-underscore-fields-behavior`
|
|
|
|
Lint "public" fields in a struct that are prefixed with an underscore based on their
|
|
|
|
exported visibility, or whether they are marked as "pub".
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `"PubliclyExported"`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`pub_underscore_fields`](https://rust-lang.github.io/rust-clippy/master/index.html#pub_underscore_fields)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `semicolon-inside-block-ignore-singleline`
|
|
|
|
Whether to lint only if it's multiline.
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-11-02 16:35:56 +00:00
|
|
|
**Default Value:** `false`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`semicolon_inside_block`](https://rust-lang.github.io/rust-clippy/master/index.html#semicolon_inside_block)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `semicolon-outside-block-ignore-multiline`
|
|
|
|
Whether to lint only if it's singleline.
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-11-02 16:35:56 +00:00
|
|
|
**Default Value:** `false`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`semicolon_outside_block`](https://rust-lang.github.io/rust-clippy/master/index.html#semicolon_outside_block)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `single-char-binding-names-threshold`
|
|
|
|
The maximum number of single char bindings a scope may have
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `4`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`many_single_char_names`](https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `stack-size-threshold`
|
|
|
|
The maximum allowed stack size for functions in bytes
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `512000`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`large_stack_frames`](https://rust-lang.github.io/rust-clippy/master/index.html#large_stack_frames)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `standard-macro-braces`
|
|
|
|
Enforce the named macros always use the braces specified.
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
A `MacroMatcher` can be added like so `{ name = "macro_name", brace = "(" }`. If the macro
|
|
|
|
could be used with a full path two `MacroMatcher`s have to be added one with the full path
|
|
|
|
`crate_name::macro_name` and one with just the macro name.
|
|
|
|
|
|
|
|
**Default Value:** `[]`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`nonstandard_macro_braces`](https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `struct-field-name-threshold`
|
|
|
|
The minimum number of struct fields for the lints about field names to trigger
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `3`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`struct_field_names`](https://rust-lang.github.io/rust-clippy/master/index.html#struct_field_names)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
## `suppress-restriction-lint-in-const`
|
2023-02-10 13:01:19 +00:00
|
|
|
Whether to suppress a restriction lint in constant code. In same
|
2023-01-27 20:09:08 +00:00
|
|
|
cases the restructured operation might not be unavoidable, as the
|
|
|
|
suggested counterparts are unavailable in constant code. This
|
|
|
|
configuration will cause restriction lints to trigger even
|
|
|
|
if no suggestion can be made.
|
|
|
|
|
2023-11-02 16:35:56 +00:00
|
|
|
**Default Value:** `false`
|
2023-01-27 20:09:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
|
|
|
* [`indexing_slicing`](https://rust-lang.github.io/rust-clippy/master/index.html#indexing_slicing)
|
2023-01-27 20:09:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `too-large-for-stack`
|
|
|
|
The maximum size of objects (in bytes) that will be linted. Larger objects are ok on the heap
|
2023-04-11 13:31:08 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `200`
|
2023-04-11 13:31:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`boxed_local`](https://rust-lang.github.io/rust-clippy/master/index.html#boxed_local)
|
|
|
|
* [`useless_vec`](https://rust-lang.github.io/rust-clippy/master/index.html#useless_vec)
|
2023-04-11 13:31:08 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `too-many-arguments-threshold`
|
|
|
|
The maximum number of argument a function or method can have
|
2023-04-23 11:03:09 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `7`
|
2023-04-23 11:03:09 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`too_many_arguments`](https://rust-lang.github.io/rust-clippy/master/index.html#too_many_arguments)
|
2023-07-02 12:35:19 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `too-many-lines-threshold`
|
|
|
|
The maximum number of lines a function or method can have
|
2023-07-02 12:35:19 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `100`
|
2023-07-02 12:35:19 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`too_many_lines`](https://rust-lang.github.io/rust-clippy/master/index.html#too_many_lines)
|
2023-07-02 12:35:19 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `trivial-copy-size-limit`
|
|
|
|
The maximum size (in bytes) to consider a `Copy` type for passing by value instead of by
|
|
|
|
reference. By default there is no limit
|
2023-07-02 12:35:19 +00:00
|
|
|
|
2024-07-28 03:34:16 +00:00
|
|
|
**Default Value:** `target_pointer_width * 2`
|
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`trivially_copy_pass_by_ref`](https://rust-lang.github.io/rust-clippy/master/index.html#trivially_copy_pass_by_ref)
|
2023-07-02 12:35:19 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `type-complexity-threshold`
|
|
|
|
The maximum complexity a type can have
|
2023-07-02 12:35:19 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `250`
|
2023-07-02 12:35:19 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`type_complexity`](https://rust-lang.github.io/rust-clippy/master/index.html#type_complexity)
|
2023-07-02 12:35:19 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `unnecessary-box-size`
|
|
|
|
The byte size a `T` in `Box<T>` can have, below which it triggers the `clippy::unnecessary_box` lint
|
2023-07-02 12:35:19 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `128`
|
2023-07-02 12:35:19 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`unnecessary_box_returns`](https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_box_returns)
|
2023-07-02 12:35:19 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `unreadable-literal-lint-fractions`
|
|
|
|
Should the fraction of a decimal be linted to include separators.
|
2023-07-02 12:35:19 +00:00
|
|
|
|
2023-11-02 16:35:56 +00:00
|
|
|
**Default Value:** `true`
|
2023-07-02 12:35:19 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`unreadable_literal`](https://rust-lang.github.io/rust-clippy/master/index.html#unreadable_literal)
|
2023-07-02 12:35:19 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `upper-case-acronyms-aggressive`
|
|
|
|
Enables verbose mode. Triggers if there is more than one uppercase char next to each other
|
2023-07-02 12:35:19 +00:00
|
|
|
|
2023-11-02 16:35:56 +00:00
|
|
|
**Default Value:** `false`
|
2023-04-23 11:03:09 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`upper_case_acronyms`](https://rust-lang.github.io/rust-clippy/master/index.html#upper_case_acronyms)
|
2023-09-25 09:28:58 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `vec-box-size-threshold`
|
|
|
|
The size of the boxed type in bytes, where boxing in a `Vec` is allowed
|
2024-01-25 18:17:36 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `4096`
|
2024-01-25 18:17:36 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`vec_box`](https://rust-lang.github.io/rust-clippy/master/index.html#vec_box)
|
2024-01-25 18:17:36 +00:00
|
|
|
|
2023-09-12 16:13:53 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `verbose-bit-mask-threshold`
|
|
|
|
The maximum allowed size of a bit mask before suggesting to use 'trailing_zeros'
|
2023-09-12 16:13:53 +00:00
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
**Default Value:** `1`
|
2023-09-12 16:13:53 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
**Affected lints:**
|
2024-03-07 16:19:29 +00:00
|
|
|
* [`verbose_bit_mask`](https://rust-lang.github.io/rust-clippy/master/index.html#verbose_bit_mask)
|
2023-09-12 16:13:53 +00:00
|
|
|
|
|
|
|
|
2024-03-07 16:19:29 +00:00
|
|
|
## `warn-on-all-wildcard-imports`
|
|
|
|
Whether to allow certain wildcard imports (prelude, super in tests).
|
2023-12-01 17:21:58 +00:00
|
|
|
|
|
|
|
**Default Value:** `false`
|
|
|
|
|
2024-02-08 19:24:42 +00:00
|
|
|
---
|
|
|
|
**Affected lints:**
|
|
|
|
* [`wildcard_imports`](https://rust-lang.github.io/rust-clippy/master/index.html#wildcard_imports)
|
|
|
|
|
|
|
|
|
2024-05-21 17:39:30 +00:00
|
|
|
## `warn-unsafe-macro-metavars-in-private-macros`
|
|
|
|
Whether to also emit warnings for unsafe blocks with metavariable expansions in **private** macros.
|
|
|
|
|
|
|
|
**Default Value:** `false`
|
|
|
|
|
|
|
|
---
|
|
|
|
**Affected lints:**
|
|
|
|
* [`macro_metavars_in_unsafe`](https://rust-lang.github.io/rust-clippy/master/index.html#macro_metavars_in_unsafe)
|