@@ -43,6 +43,7 @@ Please use that command to update the file and do not edit it by hand.
43
43
| [ allowed-scripts] ( #allowed-scripts ) | ` ["Latin"] ` |
44
44
| [ enable-raw-pointer-heuristic-for-send] ( #enable-raw-pointer-heuristic-for-send ) | ` true ` |
45
45
| [ max-suggested-slice-pattern-length] ( #max-suggested-slice-pattern-length ) | ` 3 ` |
46
+ | [ await-holding-invalid-types] ( #await-holding-invalid-types ) | ` [] ` |
46
47
| [ max-include-file-size] ( #max-include-file-size ) | ` 1000000 ` |
47
48
| [ allow-expect-in-tests] ( #allow-expect-in-tests ) | ` false ` |
48
49
| [ allow-unwrap-in-tests] ( #allow-unwrap-in-tests ) | ` false ` |
@@ -167,6 +168,17 @@ The minimum rust version that the project supports
167
168
* [ manual_clamp] ( https://rust-lang.github.io/rust-clippy/master/index.html#manual_clamp )
168
169
* [ manual_let_else] ( https://rust-lang.github.io/rust-clippy/master/index.html#manual_let_else )
169
170
* [ unchecked_duration_subtraction] ( https://rust-lang.github.io/rust-clippy/master/index.html#unchecked_duration_subtraction )
171
+ * [ collapsible_str_replace] ( https://rust-lang.github.io/rust-clippy/master/index.html#collapsible_str_replace )
172
+ * [ seek_from_current] ( https://rust-lang.github.io/rust-clippy/master/index.html#seek_from_current )
173
+ * [ seek_rewind] ( https://rust-lang.github.io/rust-clippy/master/index.html#seek_rewind )
174
+ * [ unnecessary_lazy_evaluations] ( https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_lazy_evaluations )
175
+ * [ transmute_ptr_to_ref] ( https://rust-lang.github.io/rust-clippy/master/index.html#transmute_ptr_to_ref )
176
+ * [ almost_complete_range] ( https://rust-lang.github.io/rust-clippy/master/index.html#almost_complete_range )
177
+ * [ needless_borrow] ( https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow )
178
+ * [ derivable_impls] ( https://rust-lang.github.io/rust-clippy/master/index.html#derivable_impls )
179
+ * [ manual_is_ascii_check] ( https://rust-lang.github.io/rust-clippy/master/index.html#manual_is_ascii_check )
180
+ * [ manual_rem_euclid] ( https://rust-lang.github.io/rust-clippy/master/index.html#manual_rem_euclid )
181
+ * [ manual_retain] ( https://rust-lang.github.io/rust-clippy/master/index.html#manual_retain )
170
182
171
183
172
184
### cognitive-complexity-threshold
@@ -279,7 +291,7 @@ The minimum size (in bytes) to consider a type for passing by reference instead
279
291
280
292
** Default Value:** ` 256 ` (` u64 ` )
281
293
282
- * [ large_type_pass_by_move ] ( https://rust-lang.github.io/rust-clippy/master/index.html#large_type_pass_by_move )
294
+ * [ large_types_passed_by_value ] ( https://rust-lang.github.io/rust-clippy/master/index.html#large_types_passed_by_value )
283
295
284
296
285
297
### too-many-lines-threshold
@@ -442,6 +454,14 @@ For example, `[_, _, _, e, ..]` is a slice pattern with 4 elements.
442
454
* [ index_refutable_slice] ( https://rust-lang.github.io/rust-clippy/master/index.html#index_refutable_slice )
443
455
444
456
457
+ ### await-holding-invalid-types
458
+
459
+
460
+ ** Default Value:** ` [] ` (` Vec<crate::utils::conf::DisallowedPath> ` )
461
+
462
+ * [ await_holding_invalid_type] ( https://rust-lang.github.io/rust-clippy/master/index.html#await_holding_invalid_type )
463
+
464
+
445
465
### max-include-file-size
446
466
The maximum size of a file included via ` include_bytes!() ` or ` include_str!() ` , in bytes
447
467
@@ -497,7 +517,7 @@ for the generic parameters for determining interior mutability
497
517
498
518
** Default Value:** ` ["bytes::Bytes"] ` (` Vec<String> ` )
499
519
500
- * [ mutable_key ] ( https://rust-lang.github.io/rust-clippy/master/index.html#mutable_key )
520
+ * [ mutable_key_type ] ( https://rust-lang.github.io/rust-clippy/master/index.html#mutable_key_type )
501
521
502
522
503
523
### allow-mixed-uninlined-format-args
@@ -509,7 +529,7 @@ Whether to allow mixed uninlined format args, e.g. `format!("{} {}", a, foo.bar)
509
529
510
530
511
531
### suppress-restriction-lint-in-const
512
- In same
532
+ Whether to suppress a restriction lint in constant code. In same
513
533
cases the restructured operation might not be unavoidable, as the
514
534
suggested counterparts are unavailable in constant code. This
515
535
configuration will cause restriction lints to trigger even
0 commit comments