|
| 1 | +error: lint `clippy::block_in_if_condition_expr` has been renamed to `clippy::blocks_in_if_conditions` |
| 2 | + --> $DIR/rename.rs:10:10 |
| 3 | + | |
| 4 | +LL | #![allow(clippy::block_in_if_condition_expr)] |
| 5 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `clippy::blocks_in_if_conditions` |
| 6 | + | |
| 7 | + = note: `-D renamed-and-removed-lints` implied by `-D warnings` |
| 8 | + |
| 9 | +error: lint `clippy::block_in_if_condition_stmt` has been renamed to `clippy::blocks_in_if_conditions` |
| 10 | + --> $DIR/rename.rs:11:10 |
| 11 | + | |
| 12 | +LL | #![allow(clippy::block_in_if_condition_stmt)] |
| 13 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `clippy::blocks_in_if_conditions` |
| 14 | + |
| 15 | +error: unknown lint: `clippy::for_loop_over_fallibles` |
| 16 | + --> $DIR/rename.rs:17:10 |
| 17 | + | |
| 18 | +LL | #![allow(clippy::for_loop_over_fallibles)] |
| 19 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: did you mean: `clippy::for_loops_over_fallibles` |
| 20 | + | |
| 21 | + = note: `-D unknown-lints` implied by `-D warnings` |
| 22 | + |
1 | 23 | error: lint `clippy::cyclomatic_complexity` has been renamed to `clippy::cognitive_complexity`
|
2 |
| - --> $DIR/rename.rs:10:9 |
| 24 | + --> $DIR/rename.rs:33:9 |
3 | 25 | |
|
4 | 26 | LL | #![warn(clippy::cyclomatic_complexity)]
|
5 | 27 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `clippy::cognitive_complexity`
|
| 28 | + |
| 29 | +error: lint `clippy::mem_discriminant_non_enum` has been renamed to `enum_intrinsics_non_enums` |
| 30 | + --> $DIR/rename.rs:34:9 |
6 | 31 | |
|
7 |
| - = note: `-D renamed-and-removed-lints` implied by `-D warnings` |
| 32 | +LL | #![warn(clippy::mem_discriminant_non_enum)] |
| 33 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `enum_intrinsics_non_enums` |
| 34 | + |
| 35 | +error: lint `clippy::option_and_then_some` has been renamed to `clippy::bind_instead_of_map` |
| 36 | + --> $DIR/rename.rs:35:9 |
| 37 | + | |
| 38 | +LL | #![warn(clippy::option_and_then_some)] |
| 39 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `clippy::bind_instead_of_map` |
| 40 | + |
| 41 | +error: lint `clippy::box_vec` has been renamed to `clippy::box_collection` |
| 42 | + --> $DIR/rename.rs:36:9 |
| 43 | + | |
| 44 | +LL | #![warn(clippy::box_vec)] |
| 45 | + | ^^^^^^^^^^^^^^^ help: use the new name: `clippy::box_collection` |
| 46 | + |
| 47 | +error: lint `clippy::option_map_unwrap_or` has been renamed to `clippy::map_unwrap_or` |
| 48 | + --> $DIR/rename.rs:37:9 |
| 49 | + | |
| 50 | +LL | #![warn(clippy::option_map_unwrap_or)] |
| 51 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `clippy::map_unwrap_or` |
| 52 | + |
| 53 | +error: lint `clippy::option_map_unwrap_or_else` has been renamed to `clippy::map_unwrap_or` |
| 54 | + --> $DIR/rename.rs:38:9 |
| 55 | + | |
| 56 | +LL | #![warn(clippy::option_map_unwrap_or_else)] |
| 57 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `clippy::map_unwrap_or` |
| 58 | + |
| 59 | +error: lint `clippy::result_map_unwrap_or_else` has been renamed to `clippy::map_unwrap_or` |
| 60 | + --> $DIR/rename.rs:39:9 |
| 61 | + | |
| 62 | +LL | #![warn(clippy::result_map_unwrap_or_else)] |
| 63 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `clippy::map_unwrap_or` |
| 64 | + |
| 65 | +error: lint `clippy::option_unwrap_used` has been renamed to `clippy::unwrap_used` |
| 66 | + --> $DIR/rename.rs:40:9 |
| 67 | + | |
| 68 | +LL | #![warn(clippy::option_unwrap_used)] |
| 69 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `clippy::unwrap_used` |
| 70 | + |
| 71 | +error: lint `clippy::result_unwrap_used` has been renamed to `clippy::unwrap_used` |
| 72 | + --> $DIR/rename.rs:41:9 |
| 73 | + | |
| 74 | +LL | #![warn(clippy::result_unwrap_used)] |
| 75 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `clippy::unwrap_used` |
| 76 | + |
| 77 | +error: lint `clippy::option_expect_used` has been renamed to `clippy::expect_used` |
| 78 | + --> $DIR/rename.rs:42:9 |
| 79 | + | |
| 80 | +LL | #![warn(clippy::option_expect_used)] |
| 81 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `clippy::expect_used` |
| 82 | + |
| 83 | +error: lint `clippy::result_expect_used` has been renamed to `clippy::expect_used` |
| 84 | + --> $DIR/rename.rs:43:9 |
| 85 | + | |
| 86 | +LL | #![warn(clippy::result_expect_used)] |
| 87 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `clippy::expect_used` |
| 88 | + |
| 89 | +error: lint `clippy::for_loop_over_option` has been renamed to `clippy::for_loops_over_fallibles` |
| 90 | + --> $DIR/rename.rs:44:9 |
| 91 | + | |
| 92 | +LL | #![warn(clippy::for_loop_over_option)] |
| 93 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `clippy::for_loops_over_fallibles` |
| 94 | + |
| 95 | +error: lint `clippy::for_loop_over_result` has been renamed to `clippy::for_loops_over_fallibles` |
| 96 | + --> $DIR/rename.rs:45:9 |
| 97 | + | |
| 98 | +LL | #![warn(clippy::for_loop_over_result)] |
| 99 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `clippy::for_loops_over_fallibles` |
| 100 | + |
| 101 | +error: lint `clippy::identity_conversion` has been renamed to `clippy::useless_conversion` |
| 102 | + --> $DIR/rename.rs:46:9 |
| 103 | + | |
| 104 | +LL | #![warn(clippy::identity_conversion)] |
| 105 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `clippy::useless_conversion` |
| 106 | + |
| 107 | +error: lint `clippy::zero_width_space` has been renamed to `clippy::invisible_characters` |
| 108 | + --> $DIR/rename.rs:47:9 |
| 109 | + | |
| 110 | +LL | #![warn(clippy::zero_width_space)] |
| 111 | + | ^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `clippy::invisible_characters` |
| 112 | + |
| 113 | +error: lint `clippy::single_char_push_str` has been renamed to `clippy::single_char_add_str` |
| 114 | + --> $DIR/rename.rs:48:9 |
| 115 | + | |
| 116 | +LL | #![warn(clippy::single_char_push_str)] |
| 117 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `clippy::single_char_add_str` |
| 118 | + |
| 119 | +error: lint `clippy::if_let_some_result` has been renamed to `clippy::match_result_ok` |
| 120 | + --> $DIR/rename.rs:49:9 |
| 121 | + | |
| 122 | +LL | #![warn(clippy::if_let_some_result)] |
| 123 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `clippy::match_result_ok` |
| 124 | + |
| 125 | +error: lint `clippy::invalid_ref` has been renamed to `invalid_value` |
| 126 | + --> $DIR/rename.rs:51:9 |
| 127 | + | |
| 128 | +LL | #![warn(clippy::invalid_ref)] |
| 129 | + | ^^^^^^^^^^^^^^^^^^^ help: use the new name: `invalid_value` |
| 130 | + |
| 131 | +error: lint `clippy::into_iter_on_array` has been renamed to `array_into_iter` |
| 132 | + --> $DIR/rename.rs:52:9 |
| 133 | + | |
| 134 | +LL | #![warn(clippy::into_iter_on_array)] |
| 135 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `array_into_iter` |
| 136 | + |
| 137 | +error: lint `clippy::unused_label` has been renamed to `unused_labels` |
| 138 | + --> $DIR/rename.rs:53:9 |
| 139 | + | |
| 140 | +LL | #![warn(clippy::unused_label)] |
| 141 | + | ^^^^^^^^^^^^^^^^^^^^ help: use the new name: `unused_labels` |
| 142 | + |
| 143 | +error: lint `clippy::drop_bounds` has been renamed to `drop_bounds` |
| 144 | + --> $DIR/rename.rs:54:9 |
| 145 | + | |
| 146 | +LL | #![warn(clippy::drop_bounds)] |
| 147 | + | ^^^^^^^^^^^^^^^^^^^ help: use the new name: `drop_bounds` |
| 148 | + |
| 149 | +error: lint `clippy::temporary_cstring_as_ptr` has been renamed to `temporary_cstring_as_ptr` |
| 150 | + --> $DIR/rename.rs:55:9 |
| 151 | + | |
| 152 | +LL | #![warn(clippy::temporary_cstring_as_ptr)] |
| 153 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `temporary_cstring_as_ptr` |
| 154 | + |
| 155 | +error: lint `clippy::panic_params` has been renamed to `non_fmt_panics` |
| 156 | + --> $DIR/rename.rs:56:9 |
| 157 | + | |
| 158 | +LL | #![warn(clippy::panic_params)] |
| 159 | + | ^^^^^^^^^^^^^^^^^^^^ help: use the new name: `non_fmt_panics` |
| 160 | + |
| 161 | +error: lint `clippy::unknown_clippy_lints` has been renamed to `unknown_lints` |
| 162 | + --> $DIR/rename.rs:57:9 |
| 163 | + | |
| 164 | +LL | #![warn(clippy::unknown_clippy_lints)] |
| 165 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `unknown_lints` |
| 166 | + |
| 167 | +error: lint `clippy::invalid_atomic_ordering` has been renamed to `invalid_atomic_ordering` |
| 168 | + --> $DIR/rename.rs:58:9 |
| 169 | + | |
| 170 | +LL | #![warn(clippy::invalid_atomic_ordering)] |
| 171 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `invalid_atomic_ordering` |
8 | 172 |
|
9 | 173 | error: lint `clippy::mem_discriminant_non_enum` has been renamed to `enum_intrinsics_non_enums`
|
10 |
| - --> $DIR/rename.rs:11:9 |
| 174 | + --> $DIR/rename.rs:59:9 |
11 | 175 | |
|
12 | 176 | LL | #![warn(clippy::mem_discriminant_non_enum)]
|
13 | 177 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `enum_intrinsics_non_enums`
|
14 | 178 |
|
15 | 179 | error: lint `clippy::stutter` has been renamed to `clippy::module_name_repetitions`
|
16 |
| - --> $DIR/rename.rs:13:8 |
| 180 | + --> $DIR/rename.rs:61:8 |
17 | 181 | |
|
18 | 182 | LL | #[warn(clippy::stutter)]
|
19 | 183 | | ^^^^^^^^^^^^^^^ help: use the new name: `clippy::module_name_repetitions`
|
20 | 184 |
|
21 | 185 | error: lint `clippy::new_without_default_derive` has been renamed to `clippy::new_without_default`
|
22 |
| - --> $DIR/rename.rs:16:8 |
| 186 | + --> $DIR/rename.rs:64:8 |
23 | 187 | |
|
24 | 188 | LL | #[warn(clippy::new_without_default_derive)]
|
25 | 189 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `clippy::new_without_default`
|
26 | 190 |
|
27 | 191 | error: lint `clippy::const_static_lifetime` has been renamed to `clippy::redundant_static_lifetimes`
|
28 |
| - --> $DIR/rename.rs:19:8 |
| 192 | + --> $DIR/rename.rs:67:8 |
29 | 193 | |
|
30 | 194 | LL | #[warn(clippy::const_static_lifetime)]
|
31 | 195 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `clippy::redundant_static_lifetimes`
|
32 | 196 |
|
33 |
| -error: aborting due to 5 previous errors |
| 197 | +error: aborting due to 32 previous errors |
34 | 198 |
|
0 commit comments