@@ -253,7 +253,7 @@ define_Conf! {
253
253
///
254
254
/// Suppress lints whenever the suggested change would cause breakage for other crates.
255
255
( avoid_breaking_exported_api: bool = true ) ,
256
- /// Lint: MANUAL_SPLIT_ONCE, MANUAL_STR_REPEAT, CLONED_INSTEAD_OF_COPIED, REDUNDANT_FIELD_NAMES, REDUNDANT_STATIC_LIFETIMES, FILTER_MAP_NEXT, CHECKED_CONVERSIONS, MANUAL_RANGE_CONTAINS, USE_SELF, MEM_REPLACE_WITH_DEFAULT, MANUAL_NON_EXHAUSTIVE, OPTION_AS_REF_DEREF, MAP_UNWRAP_OR, MATCH_LIKE_MATCHES_MACRO, MANUAL_STRIP, MISSING_CONST_FOR_FN, UNNESTED_OR_PATTERNS, FROM_OVER_INTO, PTR_AS_PTR, IF_THEN_SOME_ELSE_NONE, APPROX_CONSTANT, DEPRECATED_CFG_ATTR, INDEX_REFUTABLE_SLICE, MAP_CLONE, BORROW_AS_PTR, MANUAL_BITS, ERR_EXPECT, CAST_ABS_TO_UNSIGNED, UNINLINED_FORMAT_ARGS, MANUAL_CLAMP, MANUAL_LET_ELSE, UNCHECKED_DURATION_SUBTRACTION.
256
+ /// Lint: MANUAL_SPLIT_ONCE, MANUAL_STR_REPEAT, CLONED_INSTEAD_OF_COPIED, REDUNDANT_FIELD_NAMES, REDUNDANT_STATIC_LIFETIMES, FILTER_MAP_NEXT, CHECKED_CONVERSIONS, MANUAL_RANGE_CONTAINS, USE_SELF, MEM_REPLACE_WITH_DEFAULT, MANUAL_NON_EXHAUSTIVE, OPTION_AS_REF_DEREF, MAP_UNWRAP_OR, MATCH_LIKE_MATCHES_MACRO, MANUAL_STRIP, MISSING_CONST_FOR_FN, UNNESTED_OR_PATTERNS, FROM_OVER_INTO, PTR_AS_PTR, IF_THEN_SOME_ELSE_NONE, APPROX_CONSTANT, DEPRECATED_CFG_ATTR, INDEX_REFUTABLE_SLICE, MAP_CLONE, BORROW_AS_PTR, MANUAL_BITS, ERR_EXPECT, CAST_ABS_TO_UNSIGNED, UNINLINED_FORMAT_ARGS, MANUAL_CLAMP, MANUAL_LET_ELSE, UNCHECKED_DURATION_SUBTRACTION, COLLAPSIBLE_STR_REPLACE, SEEK_FROM_CURRENT, SEEK_REWIND, UNNECESSARY_LAZY_EVALUATIONS, TRANSMUTE_PTR_TO_REF, ALMOST_COMPLETE_RANGE, NEEDLESS_BORROW, DERIVABLE_IMPLS, MANUAL_IS_ASCII_CHECK, MANUAL_REM_EUCLID, MANUAL_RETAIN .
257
257
///
258
258
/// The minimum rust version that the project supports
259
259
( msrv: Option <String > = None ) ,
@@ -323,7 +323,7 @@ define_Conf! {
323
323
///
324
324
/// The maximum size (in bytes) to consider a `Copy` type for passing by value instead of by reference.
325
325
( trivial_copy_size_limit: Option <u64 > = None ) ,
326
- /// Lint: LARGE_TYPE_PASS_BY_MOVE .
326
+ /// Lint: LARGE_TYPES_PASSED_BY_VALUE .
327
327
///
328
328
/// The minimum size (in bytes) to consider a type for passing by reference instead of by value.
329
329
( pass_by_value_size_limit: u64 = 256 ) ,
@@ -411,7 +411,7 @@ define_Conf! {
411
411
/// the slice pattern that is suggested. If more elements would be necessary, the lint is suppressed.
412
412
/// For example, `[_, _, _, e, ..]` is a slice pattern with 4 elements.
413
413
( max_suggested_slice_pattern_length: u64 = 3 ) ,
414
- /// Lint: AWAIT_HOLDING_INVALID_TYPE
414
+ /// Lint: AWAIT_HOLDING_INVALID_TYPE.
415
415
( await_holding_invalid_types: Vec <crate :: utils:: conf:: DisallowedPath > = Vec :: new( ) ) ,
416
416
/// Lint: LARGE_INCLUDE_FILE.
417
417
///
@@ -437,7 +437,7 @@ define_Conf! {
437
437
///
438
438
/// The maximum size of the `Err`-variant in a `Result` returned from a function
439
439
( large_error_threshold: u64 = 128 ) ,
440
- /// Lint: MUTABLE_KEY .
440
+ /// Lint: MUTABLE_KEY_TYPE .
441
441
///
442
442
/// A list of paths to types that should be treated like `Arc`, i.e. ignored but
443
443
/// for the generic parameters for determining interior mutability
@@ -446,7 +446,7 @@ define_Conf! {
446
446
///
447
447
/// Whether to allow mixed uninlined format args, e.g. `format!("{} {}", a, foo.bar)`
448
448
( allow_mixed_uninlined_format_args: bool = true ) ,
449
- /// Lint: INDEXING_SLICING
449
+ /// Lint: INDEXING_SLICING.
450
450
///
451
451
/// Whether to suppress a restriction lint in constant code. In same
452
452
/// cases the restructured operation might not be unavoidable, as the
0 commit comments