File tree 4 files changed +6
-6
lines changed
4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ declare_clippy_lint! {
56
56
/// // lib.rs
57
57
/// pub mod a;
58
58
/// ```
59
- #[ clippy:: version = "1.70 .0" ]
59
+ #[ clippy:: version = "1.72 .0" ]
60
60
pub EXCESSIVE_NESTING ,
61
61
complexity,
62
62
"checks for blocks nested beyond a certain threshold"
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ declare_clippy_lint! {
28
28
/// // ...
29
29
/// }
30
30
/// ```
31
- #[ clippy:: version = "1.72 .0" ]
31
+ #[ clippy:: version = "1.73 .0" ]
32
32
pub FOUR_FORWARD_SLASHES ,
33
33
suspicious,
34
34
"comments with 4 forward slashes (`////`) likely intended to be doc comments (`///`)"
Original file line number Diff line number Diff line change @@ -3403,7 +3403,7 @@ declare_clippy_lint! {
3403
3403
/// # let c = 'c';
3404
3404
/// matches!(c, '\\' | '.' | '+' | '*' | '(' | ')' | '|' | '[' | ']' | '{' | '}' | '^' | '$' | '#' | '&' | '-' | '~');
3405
3405
/// ```
3406
- #[ clippy:: version = "1.72 .0" ]
3406
+ #[ clippy:: version = "1.73 .0" ]
3407
3407
pub STRING_LIT_CHARS_ANY ,
3408
3408
restriction,
3409
3409
"checks for `<string_lit>.chars().any(|i| i == c)`"
@@ -3438,7 +3438,7 @@ declare_clippy_lint! {
3438
3438
/// })
3439
3439
/// }
3440
3440
/// ```
3441
- #[ clippy:: version = "1.72 .0" ]
3441
+ #[ clippy:: version = "1.73 .0" ]
3442
3442
pub FORMAT_COLLECT ,
3443
3443
perf,
3444
3444
"`format!`ing every element in a collection, then collecting the strings into a new `String`"
@@ -3459,7 +3459,7 @@ declare_clippy_lint! {
3459
3459
/// let y = v.iter().collect::<Vec<_>>();
3460
3460
/// assert_eq!(x, y);
3461
3461
/// ```
3462
- #[ clippy:: version = "1.72 .0" ]
3462
+ #[ clippy:: version = "1.73 .0" ]
3463
3463
pub ITER_SKIP_ZERO ,
3464
3464
correctness,
3465
3465
"disallows `.skip(0)`"
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ declare_clippy_lint! {
37
37
/// ```
38
38
#[ clippy:: version = "1.72.0" ]
39
39
pub TUPLE_ARRAY_CONVERSIONS ,
40
- nursery ,
40
+ pedantic ,
41
41
"checks for tuple<=>array conversions that are not done with `.into()`"
42
42
}
43
43
impl_lint_pass ! ( TupleArrayConversions => [ TUPLE_ARRAY_CONVERSIONS ] ) ;
You can’t perform that action at this time.
0 commit comments