about summary refs log tree commit diff
diff options
context:
space:
mode:
authorxFrednet <xFrednet@gmail.com>2023-03-30 10:49:29 +0200
committerxFrednet <xFrednet@gmail.com>2023-03-30 10:49:29 +0200
commit6e87ae0f1ae5247c83470c6c039c0946063bfdda (patch)
tree28edf92b1009cd7a58fcf40b145bb5134e295d13
parent4f5a019d6e836ff4b56154bf6c646cc358310fa9 (diff)
downloadrust-6e87ae0f1ae5247c83470c6c039c0946063bfdda.tar.gz
rust-6e87ae0f1ae5247c83470c6c039c0946063bfdda.zip
Run metadata collection
-rw-r--r--book/src/lint_configuration.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/book/src/lint_configuration.md b/book/src/lint_configuration.md
index 33f2b5c1de9..2aebd632507 100644
--- a/book/src/lint_configuration.md
+++ b/book/src/lint_configuration.md
@@ -54,6 +54,7 @@ Please use that command to update the file and do not edit it by hand.
 | [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` |
+| [future-size-threshold](#future-size-threshold) | `16384` |
 
 ### arithmetic-side-effects-allowed
 Suppress checking of the passed type names in all types of operations.
@@ -550,4 +551,12 @@ crate. For example, `pub(crate)` items.
 * [missing_docs_in_private_items](https://rust-lang.github.io/rust-clippy/master/index.html#missing_docs_in_private_items)
 
 
+### future-size-threshold
+The maximum byte size a `Future` can have, before it triggers the `clippy::large_futures` lint
+
+**Default Value:** `16384` (`u64`)
+
+* [large_futures](https://rust-lang.github.io/rust-clippy/master/index.html#large_futures)
+
+