]> git.lizzy.rs Git - rust.git/blob - CHANGELOG.md
Let update_lints also generate the internal lints
[rust.git] / CHANGELOG.md
1 # Change Log
2
3 All notable changes to this project will be documented in this file.
4 See [Changelog Update](doc/changelog_update.md) if you want to update this
5 document.
6
7 ## Unreleased / In Rust Beta or Nightly
8
9 [69f99e7...master](https://github.com/rust-lang/rust-clippy/compare/69f99e7...master)
10
11 ## Rust 1.42
12
13 Current Beta
14
15 ## Rust 1.41
16
17 Current stable, released 2020-01-30
18
19 [c8e3cfb...69f99e7](https://github.com/rust-lang/rust-clippy/compare/c8e3cfb...69f99e7)
20
21 * New Lints:
22   * [`exit`] [#4697](https://github.com/rust-lang/rust-clippy/pull/4697)
23   * [`to_digit_is_some`] [#4801](https://github.com/rust-lang/rust-clippy/pull/4801)
24   * [`tabs_in_doc_comments`] [#4806](https://github.com/rust-lang/rust-clippy/pull/4806)
25   * [`large_stack_arrays`] [#4807](https://github.com/rust-lang/rust-clippy/pull/4807)
26   * [`same_functions_in_if_condition`] [#4814](https://github.com/rust-lang/rust-clippy/pull/4814)
27   * [`zst_offset`] [#4816](https://github.com/rust-lang/rust-clippy/pull/4816)
28   * [`as_conversions`] [#4821](https://github.com/rust-lang/rust-clippy/pull/4821)
29   * [`missing_errors_doc`] [#4884](https://github.com/rust-lang/rust-clippy/pull/4884)
30   * [`transmute_float_to_int`] [#4889](https://github.com/rust-lang/rust-clippy/pull/4889)
31 * Remove plugin interface, see
32   [Inside Rust Blog](https://blog.rust-lang.org/inside-rust/2019/11/04/Clippy-removes-plugin-interface.html) for
33   details [#4714](https://github.com/rust-lang/rust-clippy/pull/4714)
34 * Move [`use_self`] to nursery group [#4863](https://github.com/rust-lang/rust-clippy/pull/4863)
35 * Deprecate [`into_iter_on_array`] [#4788](https://github.com/rust-lang/rust-clippy/pull/4788)
36 * Expand [`string_lit_as_bytes`] to also trigger when literal has escapes
37   [#4808](https://github.com/rust-lang/rust-clippy/pull/4808)
38 * Fix false positive in `comparison_chain` [#4842](https://github.com/rust-lang/rust-clippy/pull/4842)
39 * Fix false positive in `while_immutable_condition` [#4730](https://github.com/rust-lang/rust-clippy/pull/4730)
40 * Fix false positive in `explicit_counter_loop` [#4803](https://github.com/rust-lang/rust-clippy/pull/4803)
41 * Fix false positive in `must_use_candidate` [#4794](https://github.com/rust-lang/rust-clippy/pull/4794)
42 * Fix false positive in `print_with_newline` and `write_with_newline`
43   [#4769](https://github.com/rust-lang/rust-clippy/pull/4769)
44 * Fix false positive in `derive_hash_xor_eq` [#4766](https://github.com/rust-lang/rust-clippy/pull/4766)
45 * Fix false positive in `missing_inline_in_public_items` [#4870](https://github.com/rust-lang/rust-clippy/pull/4870)
46 * Fix false positive in `string_add` [#4880](https://github.com/rust-lang/rust-clippy/pull/4880)
47 * Fix false positive in `float_arithmetic` [#4851](https://github.com/rust-lang/rust-clippy/pull/4851)
48 * Fix false positive in `cast_sign_loss` [#4883](https://github.com/rust-lang/rust-clippy/pull/4883)
49 * Fix false positive in `manual_swap` [#4877](https://github.com/rust-lang/rust-clippy/pull/4877)
50 * Fix ICEs occurring while checking some block expressions [#4772](https://github.com/rust-lang/rust-clippy/pull/4772)
51 * Fix ICE in `use_self` [#4776](https://github.com/rust-lang/rust-clippy/pull/4776)
52 * Fix ICEs related to `const_generics` [#4780](https://github.com/rust-lang/rust-clippy/pull/4780)
53 * Display help when running `clippy-driver` without arguments, instead of ICEing
54   [#4810](https://github.com/rust-lang/rust-clippy/pull/4810)
55 * Clippy has its own ICE message now [#4588](https://github.com/rust-lang/rust-clippy/pull/4588)
56 * Show deprecated lints in the documentation again [#4757](https://github.com/rust-lang/rust-clippy/pull/4757)
57 * Improve Documentation by adding positive examples to some lints
58   [#4832](https://github.com/rust-lang/rust-clippy/pull/4832)
59
60 ## Rust 1.40
61
62 Released 2019-12-19
63
64 [4e7e71b...c8e3cfb](https://github.com/rust-lang/rust-clippy/compare/4e7e71b...c8e3cfb)
65
66 * New Lints:
67   * [`unneeded_wildcard_pattern`] [#4537](https://github.com/rust-lang/rust-clippy/pull/4537)
68   * [`needless_doctest_main`] [#4603](https://github.com/rust-lang/rust-clippy/pull/4603)
69   * [`suspicious_unary_op_formatting`] [#4615](https://github.com/rust-lang/rust-clippy/pull/4615)
70   * [`debug_assert_with_mut_call`] [#4680](https://github.com/rust-lang/rust-clippy/pull/4680)
71   * [`unused_self`] [#4619](https://github.com/rust-lang/rust-clippy/pull/4619)
72   * [`inefficient_to_string`] [#4683](https://github.com/rust-lang/rust-clippy/pull/4683)
73   * [`must_use_unit`] [#4560](https://github.com/rust-lang/rust-clippy/pull/4560)
74   * [`must_use_candidate`] [#4560](https://github.com/rust-lang/rust-clippy/pull/4560)
75   * [`double_must_use`] [#4560](https://github.com/rust-lang/rust-clippy/pull/4560)
76   * [`comparison_chain`] [#4569](https://github.com/rust-lang/rust-clippy/pull/4569)
77   * [`unsound_collection_transmute`] [#4592](https://github.com/rust-lang/rust-clippy/pull/4592)
78   * [`panic`] [#4657](https://github.com/rust-lang/rust-clippy/pull/4657)
79   * [`unreachable`] [#4657](https://github.com/rust-lang/rust-clippy/pull/4657)
80   * [`todo`] [#4657](https://github.com/rust-lang/rust-clippy/pull/4657)
81   * [`option_expect_used`] [#4657](https://github.com/rust-lang/rust-clippy/pull/4657)
82   * [`result_expect_used`] [#4657](https://github.com/rust-lang/rust-clippy/pull/4657)
83 * Move `redundant_clone` to perf group [#4509](https://github.com/rust-lang/rust-clippy/pull/4509)
84 * Move `manual_mul_add` to nursery group [#4736](https://github.com/rust-lang/rust-clippy/pull/4736)
85 * Expand `unit_cmp` to also work with `assert_eq!`, `debug_assert_eq!`, `assert_ne!` and `debug_assert_ne!` [#4613](https://github.com/rust-lang/rust-clippy/pull/4613)
86 * Expand `integer_arithmetic` to also detect mutating arithmetic like `+=` [#4585](https://github.com/rust-lang/rust-clippy/pull/4585)
87 * Fix false positive in `nonminimal_bool` [#4568](https://github.com/rust-lang/rust-clippy/pull/4568)
88 * Fix false positive in `missing_safety_doc` [#4611](https://github.com/rust-lang/rust-clippy/pull/4611)
89 * Fix false positive in `cast_sign_loss` [#4614](https://github.com/rust-lang/rust-clippy/pull/4614)
90 * Fix false positive in `redundant_clone` [#4509](https://github.com/rust-lang/rust-clippy/pull/4509)
91 * Fix false positive in `try_err` [#4721](https://github.com/rust-lang/rust-clippy/pull/4721)
92 * Fix false positive in `toplevel_ref_arg` [#4570](https://github.com/rust-lang/rust-clippy/pull/4570)
93 * Fix false positive in `multiple_inherent_impl` [#4593](https://github.com/rust-lang/rust-clippy/pull/4593)
94 * Improve more suggestions and tests in preparation for the unstable `cargo fix --clippy` [#4575](https://github.com/rust-lang/rust-clippy/pull/4575)
95 * Improve suggestion for `zero_ptr` [#4599](https://github.com/rust-lang/rust-clippy/pull/4599)
96 * Improve suggestion for `explicit_counter_loop` [#4691](https://github.com/rust-lang/rust-clippy/pull/4691)
97 * Improve suggestion for `mul_add` [#4602](https://github.com/rust-lang/rust-clippy/pull/4602)
98 * Improve suggestion for `assertions_on_constants` [#4635](https://github.com/rust-lang/rust-clippy/pull/4635)
99 * Fix ICE in `use_self` [#4671](https://github.com/rust-lang/rust-clippy/pull/4671)
100 * Fix ICE when encountering const casts [#4590](https://github.com/rust-lang/rust-clippy/pull/4590)
101
102 ## Rust 1.39
103
104 Released 2019-11-07
105
106 [3aea860...4e7e71b](https://github.com/rust-lang/rust-clippy/compare/3aea860...4e7e71b)
107
108 * New Lints:
109   * [`uninit_assumed_init`] [#4479](https://github.com/rust-lang/rust-clippy/pull/4479)
110   * [`flat_map_identity`] [#4231](https://github.com/rust-lang/rust-clippy/pull/4231)
111   * [`missing_safety_doc`] [#4535](https://github.com/rust-lang/rust-clippy/pull/4535)
112   * [`mem_replace_with_uninit`] [#4511](https://github.com/rust-lang/rust-clippy/pull/4511)
113   * [`suspicious_map`] [#4394](https://github.com/rust-lang/rust-clippy/pull/4394)
114   * [`option_and_then_some`] [#4386](https://github.com/rust-lang/rust-clippy/pull/4386)
115   * [`manual_saturating_arithmetic`] [#4498](https://github.com/rust-lang/rust-clippy/pull/4498)
116 * Deprecate `unused_collect` lint. This is fully covered by rustc's `#[must_use]` on `collect` [#4348](https://github.com/rust-lang/rust-clippy/pull/4348)
117 * Move `type_repetition_in_bounds` to pedantic group [#4403](https://github.com/rust-lang/rust-clippy/pull/4403)
118 * Move `cast_lossless` to pedantic group [#4539](https://github.com/rust-lang/rust-clippy/pull/4539)
119 * `temporary_cstring_as_ptr` now catches more cases [#4425](https://github.com/rust-lang/rust-clippy/pull/4425)
120 * `use_self` now works in constructors, too [#4525](https://github.com/rust-lang/rust-clippy/pull/4525)
121 * `cargo_common_metadata` now checks for license files [#4518](https://github.com/rust-lang/rust-clippy/pull/4518)
122 * `cognitive_complexity` now includes the measured complexity in the warning message [#4469](https://github.com/rust-lang/rust-clippy/pull/4469)
123 * Fix false positives in `block_in_if_*` lints [#4458](https://github.com/rust-lang/rust-clippy/pull/4458)
124 * Fix false positive in `cast_lossless` [#4473](https://github.com/rust-lang/rust-clippy/pull/4473)
125 * Fix false positive in `clone_on_copy` [#4411](https://github.com/rust-lang/rust-clippy/pull/4411)
126 * Fix false positive in `deref_addrof` [#4487](https://github.com/rust-lang/rust-clippy/pull/4487)
127 * Fix false positive in `too_many_lines` [#4490](https://github.com/rust-lang/rust-clippy/pull/4490)
128 * Fix false positive in `new_ret_no_self` [#4365](https://github.com/rust-lang/rust-clippy/pull/4365)
129 * Fix false positive in `manual_swap` [#4478](https://github.com/rust-lang/rust-clippy/pull/4478)
130 * Fix false positive in `missing_const_for_fn` [#4450](https://github.com/rust-lang/rust-clippy/pull/4450)
131 * Fix false positive in `extra_unused_lifetimes` [#4477](https://github.com/rust-lang/rust-clippy/pull/4477)
132 * Fix false positive in `inherent_to_string` [#4460](https://github.com/rust-lang/rust-clippy/pull/4460)
133 * Fix false positive in `map_entry` [#4495](https://github.com/rust-lang/rust-clippy/pull/4495)
134 * Fix false positive in `unused_unit` [#4445](https://github.com/rust-lang/rust-clippy/pull/4445)
135 * Fix false positive in `redundant_pattern` [#4489](https://github.com/rust-lang/rust-clippy/pull/4489)
136 * Fix false positive in `wrong_self_convention` [#4369](https://github.com/rust-lang/rust-clippy/pull/4369)
137 * Improve various suggestions and tests in preparation for the unstable `cargo fix --clippy` [#4558](https://github.com/rust-lang/rust-clippy/pull/4558)
138 * Improve suggestions for `redundant_pattern_matching` [#4352](https://github.com/rust-lang/rust-clippy/pull/4352)
139 * Improve suggestions for `explicit_write` [#4544](https://github.com/rust-lang/rust-clippy/pull/4544)
140 * Improve suggestion for `or_fun_call` [#4522](https://github.com/rust-lang/rust-clippy/pull/4522)
141 * Improve suggestion for `match_as_ref` [#4446](https://github.com/rust-lang/rust-clippy/pull/4446)
142 * Improve suggestion for `unnecessary_fold_span` [#4382](https://github.com/rust-lang/rust-clippy/pull/4382)
143 * Add suggestions for `unseparated_literal_suffix` [#4401](https://github.com/rust-lang/rust-clippy/pull/4401)
144 * Add suggestions for `char_lit_as_u8` [#4418](https://github.com/rust-lang/rust-clippy/pull/4418)
145
146 ## Rust 1.38
147
148 Released 2019-09-26
149
150 [e3cb40e...3aea860](https://github.com/rust-lang/rust-clippy/compare/e3cb40e...3aea860)
151
152 * New Lints:
153   * [`main_recursion`] [#4203](https://github.com/rust-lang/rust-clippy/pull/4203)
154   * [`inherent_to_string`] [#4259](https://github.com/rust-lang/rust-clippy/pull/4259)
155   * [`inherent_to_string_shadow_display`] [#4259](https://github.com/rust-lang/rust-clippy/pull/4259)
156   * [`type_repetition_in_bounds`] [#3766](https://github.com/rust-lang/rust-clippy/pull/3766)
157   * [`try_err`] [#4222](https://github.com/rust-lang/rust-clippy/pull/4222)
158 * Move `{unnnecessary,panicking}_unwrap` out of nursery [#4307](https://github.com/rust-lang/rust-clippy/pull/4307)
159 * Extend the `use_self` lint to suggest uses of `Self::Variant` [#4308](https://github.com/rust-lang/rust-clippy/pull/4308)
160 * Improve suggestion for needless return [#4262](https://github.com/rust-lang/rust-clippy/pull/4262)
161 * Add auto-fixable suggestion for `let_unit` [#4337](https://github.com/rust-lang/rust-clippy/pull/4337)
162 * Fix false positive in `pub_enum_variant_names` and `enum_variant_names` [#4345](https://github.com/rust-lang/rust-clippy/pull/4345)
163 * Fix false positive in `cast_ptr_alignment` [#4257](https://github.com/rust-lang/rust-clippy/pull/4257)
164 * Fix false positive in `string_lit_as_bytes` [#4233](https://github.com/rust-lang/rust-clippy/pull/4233)
165 * Fix false positive in `needless_lifetimes` [#4266](https://github.com/rust-lang/rust-clippy/pull/4266)
166 * Fix false positive in `float_cmp` [#4275](https://github.com/rust-lang/rust-clippy/pull/4275)
167 * Fix false positives in `needless_return` [#4274](https://github.com/rust-lang/rust-clippy/pull/4274)
168 * Fix false negative in `match_same_arms` [#4246](https://github.com/rust-lang/rust-clippy/pull/4246)
169 * Fix incorrect suggestion for `needless_bool` [#4335](https://github.com/rust-lang/rust-clippy/pull/4335)
170 * Improve suggestion for `cast_ptr_alignment` [#4257](https://github.com/rust-lang/rust-clippy/pull/4257)
171 * Improve suggestion for `single_char_literal` [#4361](https://github.com/rust-lang/rust-clippy/pull/4361)
172 * Improve suggestion for `len_zero` [#4314](https://github.com/rust-lang/rust-clippy/pull/4314)
173 * Fix ICE in `implicit_hasher` [#4268](https://github.com/rust-lang/rust-clippy/pull/4268)
174 * Fix allow bug in `trivially_copy_pass_by_ref` [#4250](https://github.com/rust-lang/rust-clippy/pull/4250)
175
176 ## Rust 1.37
177
178 Released 2019-08-15
179
180 [082cfa7...e3cb40e](https://github.com/rust-lang/rust-clippy/compare/082cfa7...e3cb40e)
181
182 * New Lints:
183   * [`checked_conversions`] [#4088](https://github.com/rust-lang/rust-clippy/pull/4088)
184   * [`get_last_with_len`] [#3832](https://github.com/rust-lang/rust-clippy/pull/3832)
185   * [`integer_division`] [#4195](https://github.com/rust-lang/rust-clippy/pull/4195)
186 * Renamed Lint: `const_static_lifetime` is now called [`redundant_static_lifetimes`].
187   The lint now covers statics in addition to consts [#4162](https://github.com/rust-lang/rust-clippy/pull/4162)
188 * [`match_same_arms`] now warns for all identical arms, instead of only the first one [#4102](https://github.com/rust-lang/rust-clippy/pull/4102)
189 * [`needless_return`] now works with void functions [#4220](https://github.com/rust-lang/rust-clippy/pull/4220)
190 * Fix false positive in [`redundant_closure`] [#4190](https://github.com/rust-lang/rust-clippy/pull/4190)
191 * Fix false positive in [`useless_attribute`] [#4107](https://github.com/rust-lang/rust-clippy/pull/4107)
192 * Fix incorrect suggestion for [`float_cmp`] [#4214](https://github.com/rust-lang/rust-clippy/pull/4214)
193 * Add suggestions for [`print_with_newline`] and [`write_with_newline`] [#4136](https://github.com/rust-lang/rust-clippy/pull/4136)
194 * Improve suggestions for [`option_map_unwrap_or_else`] and [`result_map_unwrap_or_else`] [#4164](https://github.com/rust-lang/rust-clippy/pull/4164)
195 * Improve suggestions for [`non_ascii_literal`] [#4119](https://github.com/rust-lang/rust-clippy/pull/4119)
196 * Improve diagnostics for [`let_and_return`] [#4137](https://github.com/rust-lang/rust-clippy/pull/4137)
197 * Improve diagnostics for [`trivially_copy_pass_by_ref`] [#4071](https://github.com/rust-lang/rust-clippy/pull/4071)
198 * Add macro check for [`unreadable_literal`] [#4099](https://github.com/rust-lang/rust-clippy/pull/4099)
199
200 ## Rust 1.36
201
202 Released 2019-07-04
203
204 [eb9f9b1...082cfa7](https://github.com/rust-lang/rust-clippy/compare/eb9f9b1...082cfa7)
205
206 * New lints: [`find_map`], [`filter_map_next`] [#4039](https://github.com/rust-lang/rust-clippy/pull/4039)
207 * New lint: [`path_buf_push_overwrite`] [#3954](https://github.com/rust-lang/rust-clippy/pull/3954)
208 * Move `path_buf_push_overwrite` to the nursery [#4013](https://github.com/rust-lang/rust-clippy/pull/4013)
209 * Split [`redundant_closure`] into [`redundant_closure`] and [`redundant_closure_for_method_calls`] [#4110](https://github.com/rust-lang/rust-clippy/pull/4101)
210 * Allow allowing of [`toplevel_ref_arg`] lint [#4007](https://github.com/rust-lang/rust-clippy/pull/4007)
211 * Fix false negative in [`or_fun_call`] pertaining to nested constructors [#4084](https://github.com/rust-lang/rust-clippy/pull/4084)
212 * Fix false positive in [`or_fun_call`] pertaining to enum variant constructors [#4018](https://github.com/rust-lang/rust-clippy/pull/4018)
213 * Fix false positive in [`useless_let_if_seq`] pertaining to interior mutability [#4035](https://github.com/rust-lang/rust-clippy/pull/4035)
214 * Fix false positive in [`redundant_closure`] pertaining to non-function types [#4008](https://github.com/rust-lang/rust-clippy/pull/4008)
215 * Fix false positive in [`let_and_return`] pertaining to attributes on `let`s [#4024](https://github.com/rust-lang/rust-clippy/pull/4024)
216 * Fix false positive in [`module_name_repetitions`] lint pertaining to attributes [#4006](https://github.com/rust-lang/rust-clippy/pull/4006)
217 * Fix false positive on [`assertions_on_constants`] pertaining to `debug_assert!` [#3989](https://github.com/rust-lang/rust-clippy/pull/3989)
218 * Improve suggestion in [`map_clone`] to suggest `.copied()` where applicable  [#3970](https://github.com/rust-lang/rust-clippy/pull/3970) [#4043](https://github.com/rust-lang/rust-clippy/pull/4043)
219 * Improve suggestion for [`search_is_some`] [#4049](https://github.com/rust-lang/rust-clippy/pull/4049)
220 * Improve suggestion applicability for [`naive_bytecount`] [#3984](https://github.com/rust-lang/rust-clippy/pull/3984)
221 * Improve suggestion applicability for [`while_let_loop`] [#3975](https://github.com/rust-lang/rust-clippy/pull/3975)
222 * Improve diagnostics for [`too_many_arguments`] [#4053](https://github.com/rust-lang/rust-clippy/pull/4053)
223 * Improve diagnostics for [`cast_lossless`] [#4021](https://github.com/rust-lang/rust-clippy/pull/4021)
224 * Deal with macro checks in desugarings better [#4082](https://github.com/rust-lang/rust-clippy/pull/4082)
225 * Add macro check for [`unnecessary_cast`]  [#4026](https://github.com/rust-lang/rust-clippy/pull/4026)
226 * Remove [`approx_constant`]'s documentation's "Known problems" section. [#4027](https://github.com/rust-lang/rust-clippy/pull/4027)
227 * Fix ICE in [`suspicious_else_formatting`] [#3960](https://github.com/rust-lang/rust-clippy/pull/3960)
228 * Fix ICE in [`decimal_literal_representation`] [#3931](https://github.com/rust-lang/rust-clippy/pull/3931)
229
230
231 ## Rust 1.35
232
233 Released 2019-05-20
234
235 [1fac380..37f5c1e](https://github.com/rust-lang/rust-clippy/compare/1fac380...37f5c1e)
236
237 * New lint: [`drop_bounds`] to detect `T: Drop` bounds
238 * Split [`redundant_closure`] into [`redundant_closure`] and [`redundant_closure_for_method_calls`] [#4110](https://github.com/rust-lang/rust-clippy/pull/4101)
239 * Rename `cyclomatic_complexity` to [`cognitive_complexity`], start work on making lint more practical for Rust code
240 * Move [`get_unwrap`] to the restriction category
241 * Improve suggestions for [`iter_cloned_collect`]
242 * Improve suggestions for [`cast_lossless`] to suggest suffixed literals
243 * Fix false positives in [`print_with_newline`] and [`write_with_newline`] pertaining to raw strings
244 * Fix false positive in [`needless_range_loop`] pertaining to structs without a `.iter()`
245 * Fix false positive in [`bool_comparison`] pertaining to non-bool types
246 * Fix false positive in [`redundant_closure`] pertaining to differences in borrows
247 * Fix false positive in [`option_map_unwrap_or`] on non-copy types
248 * Fix false positives in [`missing_const_for_fn`] pertaining to macros and trait method impls
249 * Fix false positive in [`needless_pass_by_value`] pertaining to procedural macros
250 * Fix false positive in [`needless_continue`] pertaining to loop labels
251 * Fix false positive for [`boxed_local`] pertaining to arguments moved into closures
252 * Fix false positive for [`use_self`] in nested functions
253 * Fix suggestion for [`expect_fun_call`] (https://github.com/rust-lang/rust-clippy/pull/3846)
254 * Fix suggestion for [`explicit_counter_loop`] to deal with parenthesizing range variables
255 * Fix suggestion for [`single_char_pattern`] to correctly escape single quotes
256 * Avoid triggering [`redundant_closure`] in macros
257 * ICE fixes: [#3805](https://github.com/rust-lang/rust-clippy/pull/3805), [#3772](https://github.com/rust-lang/rust-clippy/pull/3772), [#3741](https://github.com/rust-lang/rust-clippy/pull/3741)
258
259 ## Rust 1.34
260
261 Released 2019-04-10
262
263 [1b89724...1fac380](https://github.com/rust-lang/rust-clippy/compare/1b89724...1fac380)
264
265 * New lint: [`assertions_on_constants`] to detect for example `assert!(true)`
266 * New lint: [`dbg_macro`] to detect uses of the `dbg!` macro
267 * New lint: [`missing_const_for_fn`] that can suggest functions to be made `const`
268 * New lint: [`too_many_lines`] to detect functions with excessive LOC. It can be
269   configured using the `too-many-lines-threshold` configuration.
270 * New lint: [`wildcard_enum_match_arm`] to check for wildcard enum matches using `_`
271 * Expand `redundant_closure` to also work for methods (not only functions)
272 * Fix ICEs in `vec_box`, `needless_pass_by_value` and `implicit_hasher`
273 * Fix false positive in `cast_sign_loss`
274 * Fix false positive in `integer_arithmetic`
275 * Fix false positive in `unit_arg`
276 * Fix false positives in `implicit_return`
277 * Add suggestion to `explicit_write`
278 * Improve suggestions for `question_mark` lint
279 * Fix incorrect suggestion for `cast_lossless`
280 * Fix incorrect suggestion for `expect_fun_call`
281 * Fix incorrect suggestion for `needless_bool`
282 * Fix incorrect suggestion for `needless_range_loop`
283 * Fix incorrect suggestion for `use_self`
284 * Fix incorrect suggestion for `while_let_on_iterator`
285 * Clippy is now slightly easier to invoke in non-cargo contexts. See
286   [#3665][pull3665] for more details.
287 * We now have [improved documentation][adding_lints] on how to add new lints
288
289 ## Rust 1.33
290
291 Released 2019-02-26
292
293 [b2601be...1b89724](https://github.com/rust-lang/rust-clippy/compare/b2601be...1b89724)
294
295 * New lints: [`implicit_return`], [`vec_box`], [`cast_ref_to_mut`]
296 * The `rust-clippy` repository is now part of the `rust-lang` org.
297 * Rename `stutter` to `module_name_repetitions`
298 * Merge `new_without_default_derive` into `new_without_default` lint
299 * Move `large_digit_groups` from `style` group to `pedantic`
300 * Expand `bool_comparison` to check for `<`, `<=`, `>`, `>=`, and `!=`
301   comparisons against booleans
302 * Expand `no_effect` to detect writes to constants such as `A_CONST.field = 2`
303 * Expand `redundant_clone` to work on struct fields
304 * Expand `suspicious_else_formatting` to detect `if .. {..} {..}`
305 * Expand `use_self` to work on tuple structs and also in local macros
306 * Fix ICE in `result_map_unit_fn` and `option_map_unit_fn`
307 * Fix false positives in `implicit_return`
308 * Fix false positives in `use_self`
309 * Fix false negative in `clone_on_copy`
310 * Fix false positive in `doc_markdown`
311 * Fix false positive in `empty_loop`
312 * Fix false positive in `if_same_then_else`
313 * Fix false positive in `infinite_iter`
314 * Fix false positive in `question_mark`
315 * Fix false positive in `useless_asref`
316 * Fix false positive in `wildcard_dependencies`
317 * Fix false positive in `write_with_newline`
318 * Add suggestion to `explicit_write`
319 * Improve suggestions for `question_mark` lint
320 * Fix incorrect suggestion for `get_unwrap`
321
322 ## Rust 1.32
323
324 Released 2019-01-17
325
326 [2e26fdc2...b2601be](https://github.com/rust-lang/rust-clippy/compare/2e26fdc2...b2601be)
327
328 * New lints: [`slow_vector_initialization`], [`mem_discriminant_non_enum`],
329   [`redundant_clone`], [`wildcard_dependencies`],
330   [`into_iter_on_ref`], [`into_iter_on_array`], [`deprecated_cfg_attr`],
331   [`mem_discriminant_non_enum`], [`cargo_common_metadata`]
332 * Add support for `u128` and `i128` to integer related lints
333 * Add float support to `mistyped_literal_suffixes`
334 * Fix false positives in `use_self`
335 * Fix false positives in `missing_comma`
336 * Fix false positives in `new_ret_no_self`
337 * Fix false positives in `possible_missing_comma`
338 * Fix false positive in `integer_arithmetic` in constant items
339 * Fix false positive in `needless_borrow`
340 * Fix false positive in `out_of_bounds_indexing`
341 * Fix false positive in `new_without_default_derive`
342 * Fix false positive in `string_lit_as_bytes`
343 * Fix false negative in `out_of_bounds_indexing`
344 * Fix false negative in `use_self`. It will now also check existential types
345 * Fix incorrect suggestion for `redundant_closure_call`
346 * Fix various suggestions that contained expanded macros
347 * Fix `bool_comparison` triggering 3 times on on on the same code
348 * Expand `trivially_copy_pass_by_ref` to work on trait methods
349 * Improve suggestion for `needless_range_loop`
350 * Move `needless_pass_by_value` from `pedantic` group to `style`
351
352 ## Rust 1.31
353
354 Released 2018-12-06
355
356 [125907ad..2e26fdc2](https://github.com/rust-lang/rust-clippy/compare/125907ad..2e26fdc2)
357
358 * Clippy has been relicensed under a dual MIT / Apache license.
359   See [#3093](https://github.com/rust-lang/rust-clippy/issues/3093) for more
360   information.
361 * With Rust 1.31, Clippy is no longer available via crates.io. The recommended
362   installation method is via `rustup component add clippy`.
363 * New lints: [`redundant_pattern_matching`], [`unnecessary_filter_map`],
364   [`unused_unit`], [`map_flatten`], [`mem_replace_option_with_none`]
365 * Fix ICE in `if_let_redundant_pattern_matching`
366 * Fix ICE in `needless_pass_by_value` when encountering a generic function
367   argument with a lifetime parameter
368 * Fix ICE in `needless_range_loop`
369 * Fix ICE in `single_char_pattern` when encountering a constant value
370 * Fix false positive in `assign_op_pattern`
371 * Fix false positive in `boxed_local` on trait implementations
372 * Fix false positive in `cmp_owned`
373 * Fix false positive in `collapsible_if` when conditionals have comments
374 * Fix false positive in `double_parens`
375 * Fix false positive in `excessive_precision`
376 * Fix false positive in `explicit_counter_loop`
377 * Fix false positive in `fn_to_numeric_cast_with_truncation`
378 * Fix false positive in `map_clone`
379 * Fix false positive in `new_ret_no_self`
380 * Fix false positive in `new_without_default` when `new` is unsafe
381 * Fix false positive in `type_complexity` when using extern types
382 * Fix false positive in `useless_format`
383 * Fix false positive in `wrong_self_convention`
384 * Fix incorrect suggestion for `excessive_precision`
385 * Fix incorrect suggestion for `expect_fun_call`
386 * Fix incorrect suggestion for `get_unwrap`
387 * Fix incorrect suggestion for `useless_format`
388 * `fn_to_numeric_cast_with_truncation` lint can be disabled again
389 * Improve suggestions for `manual_memcpy`
390 * Improve help message for `needless_lifetimes`
391
392 ## Rust 1.30
393
394 Released 2018-10-25
395
396 [14207503...125907ad](https://github.com/rust-lang/rust-clippy/compare/14207503...125907ad)
397
398 * Deprecate `assign_ops` lint
399 * New lints: [`mistyped_literal_suffixes`], [`ptr_offset_with_cast`],
400   [`needless_collect`], [`copy_iterator`]
401 * `cargo clippy -V` now includes the Clippy commit hash of the Rust
402   Clippy component
403 * Fix ICE in `implicit_hasher`
404 * Fix ICE when encountering `println!("{}" a);`
405 * Fix ICE when encountering a macro call in match statements
406 * Fix false positive in `default_trait_access`
407 * Fix false positive in `trivially_copy_pass_by_ref`
408 * Fix false positive in `similar_names`
409 * Fix false positive in `redundant_field_name`
410 * Fix false positive in `expect_fun_call`
411 * Fix false negative in `identity_conversion`
412 * Fix false negative in `explicit_counter_loop`
413 * Fix `range_plus_one` suggestion and false negative
414 * `print_with_newline` / `write_with_newline`: don't warn about string with several `\n`s in them
415 * Fix `useless_attribute` to also whitelist `unused_extern_crates`
416 * Fix incorrect suggestion for `single_char_pattern`
417 * Improve suggestion for `identity_conversion` lint
418 * Move `explicit_iter_loop` and `explicit_into_iter_loop` from `style` group to `pedantic`
419 * Move `range_plus_one` and `range_minus_one` from `nursery` group to `complexity`
420 * Move `shadow_unrelated` from `restriction` group to `pedantic`
421 * Move `indexing_slicing` from `pedantic` group to `restriction`
422
423 ## Rust 1.29
424
425 Released 2018-09-13
426
427 [v0.0.212...14207503](https://github.com/rust-lang/rust-clippy/compare/v0.0.212...14207503)
428
429 * :tada: :tada: **Rust 1.29 is the first stable Rust that includes a bundled Clippy** :tada:
430   :tada:
431   You can now run `rustup component add clippy-preview` and then `cargo
432   clippy` to run Clippy. This should put an end to the continuous nightly
433   upgrades for Clippy users.
434 * Clippy now follows the Rust versioning scheme instead of its own
435 * Fix ICE when encountering a `while let (..) = x.iter()` construct
436 * Fix false positives in `use_self`
437 * Fix false positive in `trivially_copy_pass_by_ref`
438 * Fix false positive in `useless_attribute` lint
439 * Fix false positive in `print_literal`
440 * Fix `use_self` regressions
441 * Improve lint message for `neg_cmp_op_on_partial_ord`
442 * Improve suggestion highlight for `single_char_pattern`
443 * Improve suggestions for various print/write macro lints
444 * Improve website header
445
446 ## 0.0.212 (2018-07-10)
447 * Rustup to *rustc 1.29.0-nightly (e06c87544 2018-07-06)*
448
449 ## 0.0.211
450 * Rustup to *rustc 1.28.0-nightly (e3bf634e0 2018-06-28)*
451
452 ## 0.0.210
453 * Rustup to *rustc 1.28.0-nightly (01cc982e9 2018-06-24)*
454
455 ## 0.0.209
456 * Rustup to *rustc 1.28.0-nightly (523097979 2018-06-18)*
457
458 ## 0.0.208
459 * Rustup to *rustc 1.28.0-nightly (86a8f1a63 2018-06-17)*
460
461 ## 0.0.207
462 * Rustup to *rustc 1.28.0-nightly (2a0062974 2018-06-09)*
463
464 ## 0.0.206
465 * Rustup to *rustc 1.28.0-nightly (5bf68db6e 2018-05-28)*
466
467 ## 0.0.205
468 * Rustup to *rustc 1.28.0-nightly (990d8aa74 2018-05-25)*
469 * Rename `unused_lifetimes` to `extra_unused_lifetimes` because of naming conflict with new rustc lint
470
471 ## 0.0.204
472 * Rustup to *rustc 1.28.0-nightly (71e87be38 2018-05-22)*
473
474 ## 0.0.203
475 * Rustup to *rustc 1.28.0-nightly (a3085756e 2018-05-19)*
476 * Clippy attributes are now of the form `clippy::cyclomatic_complexity` instead of `clippy(cyclomatic_complexity)`
477
478 ## 0.0.202
479 * Rustup to *rustc 1.28.0-nightly (952f344cd 2018-05-18)*
480
481 ## 0.0.201
482 * Rustup to *rustc 1.27.0-nightly (2f2a11dfc 2018-05-16)*
483
484 ## 0.0.200
485 * Rustup to *rustc 1.27.0-nightly (9fae15374 2018-05-13)*
486
487 ## 0.0.199
488 * Rustup to *rustc 1.27.0-nightly (ff2ac35db 2018-05-12)*
489
490 ## 0.0.198
491 * Rustup to *rustc 1.27.0-nightly (acd3871ba 2018-05-10)*
492
493 ## 0.0.197
494 * Rustup to *rustc 1.27.0-nightly (428ea5f6b 2018-05-06)*
495
496 ## 0.0.196
497 * Rustup to *rustc 1.27.0-nightly (e82261dfb 2018-05-03)*
498
499 ## 0.0.195
500 * Rustup to *rustc 1.27.0-nightly (ac3c2288f 2018-04-18)*
501
502 ## 0.0.194
503 * Rustup to *rustc 1.27.0-nightly (bd40cbbe1 2018-04-14)*
504 * New lints: [`cast_ptr_alignment`], [`transmute_ptr_to_ptr`], [`write_literal`], [`write_with_newline`], [`writeln_empty_string`]
505
506 ## 0.0.193
507 * Rustup to *rustc 1.27.0-nightly (eeea94c11 2018-04-06)*
508
509 ## 0.0.192
510 * Rustup to *rustc 1.27.0-nightly (fb44b4c0e 2018-04-04)*
511 * New lint: [`print_literal`]
512
513 ## 0.0.191
514 * Rustup to *rustc 1.26.0-nightly (ae544ee1c 2018-03-29)*
515 * Lint audit; categorize lints as style, correctness, complexity, pedantic, nursery, restriction.
516
517 ## 0.0.190
518 * Fix a bunch of intermittent cargo bugs
519
520 ## 0.0.189
521 * Rustup to *rustc 1.26.0-nightly (5508b2714 2018-03-18)*
522
523 ## 0.0.188
524 * Rustup to *rustc 1.26.0-nightly (392645394 2018-03-15)*
525 * New lint: [`while_immutable_condition`]
526
527 ## 0.0.187
528 * Rustup to *rustc 1.26.0-nightly (322d7f7b9 2018-02-25)*
529 * New lints: [`redundant_field_names`], [`suspicious_arithmetic_impl`], [`suspicious_op_assign_impl`]
530
531 ## 0.0.186
532 * Rustup to *rustc 1.25.0-nightly (0c6091fbd 2018-02-04)*
533 * Various false positive fixes
534
535 ## 0.0.185
536 * Rustup to *rustc 1.25.0-nightly (56733bc9f 2018-02-01)*
537 * New lint: [`question_mark`]
538
539 ## 0.0.184
540 * Rustup to *rustc 1.25.0-nightly (90eb44a58 2018-01-29)*
541 * New lints: [`double_comparisons`], [`empty_line_after_outer_attr`]
542
543 ## 0.0.183
544 * Rustup to *rustc 1.25.0-nightly (21882aad7 2018-01-28)*
545 * New lint: [`misaligned_transmute`]
546
547 ## 0.0.182
548 * Rustup to *rustc 1.25.0-nightly (a0dcecff9 2018-01-24)*
549 * New lint: [`decimal_literal_representation`]
550
551 ## 0.0.181
552 * Rustup to *rustc 1.25.0-nightly (97520ccb1 2018-01-21)*
553 * New lints: [`else_if_without_else`], [`option_option`], [`unit_arg`], [`unnecessary_fold`]
554 * Removed `unit_expr`
555 * Various false positive fixes for [`needless_pass_by_value`]
556
557 ## 0.0.180
558 * Rustup to *rustc 1.25.0-nightly (3f92e8d89 2018-01-14)*
559
560 ## 0.0.179
561 * Rustup to *rustc 1.25.0-nightly (61452e506 2018-01-09)*
562
563 ## 0.0.178
564 * Rustup to *rustc 1.25.0-nightly (ee220daca 2018-01-07)*
565
566 ## 0.0.177
567 * Rustup to *rustc 1.24.0-nightly (250b49205 2017-12-21)*
568 * New lint: [`match_as_ref`]
569
570 ## 0.0.176
571 * Rustup to *rustc 1.24.0-nightly (0077d128d 2017-12-14)*
572
573 ## 0.0.175
574 * Rustup to *rustc 1.24.0-nightly (bb42071f6 2017-12-01)*
575
576 ## 0.0.174
577 * Rustup to *rustc 1.23.0-nightly (63739ab7b 2017-11-21)*
578
579 ## 0.0.173
580 * Rustup to *rustc 1.23.0-nightly (33374fa9d 2017-11-20)*
581
582 ## 0.0.172
583 * Rustup to *rustc 1.23.0-nightly (d0f8e2913 2017-11-16)*
584
585 ## 0.0.171
586 * Rustup to *rustc 1.23.0-nightly (ff0f5de3b 2017-11-14)*
587
588 ## 0.0.170
589 * Rustup to *rustc 1.23.0-nightly (d6b06c63a 2017-11-09)*
590
591 ## 0.0.169
592 * Rustup to *rustc 1.23.0-nightly (3b82e4c74 2017-11-05)*
593 * New lints: [`just_underscores_and_digits`], [`result_map_unwrap_or_else`], [`transmute_bytes_to_str`]
594
595 ## 0.0.168
596 * Rustup to *rustc 1.23.0-nightly (f0fe716db 2017-10-30)*
597
598 ## 0.0.167
599 * Rustup to *rustc 1.23.0-nightly (90ef3372e 2017-10-29)*
600 * New lints: `const_static_lifetime`, [`erasing_op`], [`fallible_impl_from`], [`println_empty_string`], [`useless_asref`]
601
602 ## 0.0.166
603 * Rustup to *rustc 1.22.0-nightly (b7960878b 2017-10-18)*
604 * New lints: [`explicit_write`], [`identity_conversion`], [`implicit_hasher`], [`invalid_ref`], [`option_map_or_none`],
605   [`range_minus_one`], [`range_plus_one`], [`transmute_int_to_bool`], [`transmute_int_to_char`],
606   [`transmute_int_to_float`]
607
608 ## 0.0.165
609 * Rust upgrade to rustc 1.22.0-nightly (0e6f4cf51 2017-09-27)
610 * New lint: [`mut_range_bound`]
611
612 ## 0.0.164
613 * Update to *rustc 1.22.0-nightly (6c476ce46 2017-09-25)*
614 * New lint: [`int_plus_one`]
615
616 ## 0.0.163
617 * Update to *rustc 1.22.0-nightly (14039a42a 2017-09-22)*
618
619 ## 0.0.162
620 * Update to *rustc 1.22.0-nightly (0701b37d9 2017-09-18)*
621 * New lint: [`chars_last_cmp`]
622 * Improved suggestions for [`needless_borrow`], [`ptr_arg`],
623
624 ## 0.0.161
625 * Update to *rustc 1.22.0-nightly (539f2083d 2017-09-13)*
626
627 ## 0.0.160
628 * Update to *rustc 1.22.0-nightly (dd08c3070 2017-09-12)*
629
630 ## 0.0.159
631 * Update to *rustc 1.22.0-nightly (eba374fb2 2017-09-11)*
632 * New lint: [`clone_on_ref_ptr`]
633
634 ## 0.0.158
635 * New lint: [`manual_memcpy`]
636 * [`cast_lossless`] no longer has redundant parentheses in its suggestions
637 * Update to *rustc 1.22.0-nightly (dead08cb3 2017-09-08)*
638
639 ## 0.0.157 - 2017-09-04
640 * Update to *rustc 1.22.0-nightly (981ce7d8d 2017-09-03)*
641 * New lint: `unit_expr`
642
643 ## 0.0.156 - 2017-09-03
644 * Update to *rustc 1.22.0-nightly (744dd6c1d 2017-09-02)*
645
646 ## 0.0.155
647 * Update to *rustc 1.21.0-nightly (c11f689d2 2017-08-29)*
648 * New lint: [`infinite_iter`], [`maybe_infinite_iter`], [`cast_lossless`]
649
650 ## 0.0.154
651 * Update to *rustc 1.21.0-nightly (2c0558f63 2017-08-24)*
652 * Fix [`use_self`] triggering inside derives
653 * Add support for linting an entire workspace with `cargo clippy --all`
654 * New lint: [`naive_bytecount`]
655
656 ## 0.0.153
657 * Update to *rustc 1.21.0-nightly (8c303ed87 2017-08-20)*
658 * New lint: [`use_self`]
659
660 ## 0.0.152
661 * Update to *rustc 1.21.0-nightly (df511d554 2017-08-14)*
662
663 ## 0.0.151
664 * Update to *rustc 1.21.0-nightly (13d94d5fa 2017-08-10)*
665
666 ## 0.0.150
667 * Update to *rustc 1.21.0-nightly (215e0b10e 2017-08-08)*
668
669 ## 0.0.148
670 * Update to *rustc 1.21.0-nightly (37c7d0ebb 2017-07-31)*
671 * New lints: [`unreadable_literal`], [`inconsistent_digit_grouping`], [`large_digit_groups`]
672
673 ## 0.0.147
674 * Update to *rustc 1.21.0-nightly (aac223f4f 2017-07-30)*
675
676 ## 0.0.146
677 * Update to *rustc 1.21.0-nightly (52a330969 2017-07-27)*
678 * Fixes false positives in `inline_always`
679 * Fixes false negatives in `panic_params`
680
681 ## 0.0.145
682 * Update to *rustc 1.20.0-nightly (afe145d22 2017-07-23)*
683
684 ## 0.0.144
685 * Update to *rustc 1.20.0-nightly (086eaa78e 2017-07-15)*
686
687 ## 0.0.143
688 * Update to *rustc 1.20.0-nightly (d84693b93 2017-07-09)*
689 * Fix `cargo clippy` crashing on `dylib` projects
690 * Fix false positives around `nested_while_let` and `never_loop`
691
692 ## 0.0.142
693 * Update to *rustc 1.20.0-nightly (067971139 2017-07-02)*
694
695 ## 0.0.141
696 * Rewrite of the `doc_markdown` lint.
697 * Deprecated [`range_step_by_zero`]
698 * New lint: [`iterator_step_by_zero`]
699 * New lint: [`needless_borrowed_reference`]
700 * Update to *rustc 1.20.0-nightly (69c65d296 2017-06-28)*
701
702 ## 0.0.140 - 2017-06-16
703 * Update to *rustc 1.19.0-nightly (258ae6dd9 2017-06-15)*
704
705 ## 0.0.139 — 2017-06-10
706 * Update to *rustc 1.19.0-nightly (4bf5c99af 2017-06-10)*
707 * Fix bugs with for loop desugaring
708 * Check for [`AsRef`]/[`AsMut`] arguments in [`wrong_self_convention`]
709
710 ## 0.0.138 — 2017-06-05
711 * Update to *rustc 1.19.0-nightly (0418fa9d3 2017-06-04)*
712
713 ## 0.0.137 — 2017-06-05
714 * Update to *rustc 1.19.0-nightly (6684d176c 2017-06-03)*
715
716 ## 0.0.136 — 2017—05—26
717 * Update to *rustc 1.19.0-nightly (557967766 2017-05-26)*
718
719 ## 0.0.135 — 2017—05—24
720 * Update to *rustc 1.19.0-nightly (5b13bff52 2017-05-23)*
721
722 ## 0.0.134 — 2017—05—19
723 * Update to *rustc 1.19.0-nightly (0ed1ec9f9 2017-05-18)*
724
725 ## 0.0.133 — 2017—05—14
726 * Update to *rustc 1.19.0-nightly (826d8f385 2017-05-13)*
727
728 ## 0.0.132 — 2017—05—05
729 * Fix various bugs and some ices
730
731 ## 0.0.131 — 2017—05—04
732 * Update to *rustc 1.19.0-nightly (2d4ed8e0c 2017-05-03)*
733
734 ## 0.0.130 — 2017—05—03
735 * Update to *rustc 1.19.0-nightly (6a5fc9eec 2017-05-02)*
736
737 ## 0.0.129 — 2017-05-01
738 * Update to *rustc 1.19.0-nightly (06fb4d256 2017-04-30)*
739
740 ## 0.0.128 — 2017-04-28
741 * Update to *rustc 1.18.0-nightly (94e884b63 2017-04-27)*
742
743 ## 0.0.127 — 2017-04-27
744 * Update to *rustc 1.18.0-nightly (036983201 2017-04-26)*
745 * New lint: [`needless_continue`]
746
747 ## 0.0.126 — 2017-04-24
748 * Update to *rustc 1.18.0-nightly (2bd4b5c6d 2017-04-23)*
749
750 ## 0.0.125 — 2017-04-19
751 * Update to *rustc 1.18.0-nightly (9f2abadca 2017-04-18)*
752
753 ## 0.0.124 — 2017-04-16
754 * Update to *rustc 1.18.0-nightly (d5cf1cb64 2017-04-15)*
755
756 ## 0.0.123 — 2017-04-07
757 * Fix various false positives
758
759 ## 0.0.122 — 2017-04-07
760 * Rustup to *rustc 1.18.0-nightly (91ae22a01 2017-04-05)*
761 * New lint: [`op_ref`]
762
763 ## 0.0.121 — 2017-03-21
764 * Rustup to *rustc 1.17.0-nightly (134c4a0f0 2017-03-20)*
765
766 ## 0.0.120 — 2017-03-17
767 * Rustup to *rustc 1.17.0-nightly (0aeb9c129 2017-03-15)*
768
769 ## 0.0.119 — 2017-03-13
770 * Rustup to *rustc 1.17.0-nightly (824c9ebbd 2017-03-12)*
771
772 ## 0.0.118 — 2017-03-05
773 * Rustup to *rustc 1.17.0-nightly (b1e31766d 2017-03-03)*
774
775 ## 0.0.117 — 2017-03-01
776 * Rustup to *rustc 1.17.0-nightly (be760566c 2017-02-28)*
777
778 ## 0.0.116 — 2017-02-28
779 * Fix `cargo clippy` on 64 bit windows systems
780
781 ## 0.0.115 — 2017-02-27
782 * Rustup to *rustc 1.17.0-nightly (60a0edc6c 2017-02-26)*
783 * New lints: [`zero_ptr`], [`never_loop`], [`mut_from_ref`]
784
785 ## 0.0.114 — 2017-02-08
786 * Rustup to *rustc 1.17.0-nightly (c49d10207 2017-02-07)*
787 * Tests are now ui tests (testing the exact output of rustc)
788
789 ## 0.0.113 — 2017-02-04
790 * Rustup to *rustc 1.16.0-nightly (eedaa94e3 2017-02-02)*
791 * New lint: [`large_enum_variant`]
792 * `explicit_into_iter_loop` provides suggestions
793
794 ## 0.0.112 — 2017-01-27
795 * Rustup to *rustc 1.16.0-nightly (df8debf6d 2017-01-25)*
796
797 ## 0.0.111 — 2017-01-21
798 * Rustup to *rustc 1.16.0-nightly (a52da95ce 2017-01-20)*
799
800 ## 0.0.110 — 2017-01-20
801 * Add badges and categories to `Cargo.toml`
802
803 ## 0.0.109 — 2017-01-19
804 * Update to *rustc 1.16.0-nightly (c07a6ae77 2017-01-17)*
805
806 ## 0.0.108 — 2017-01-12
807 * Update to *rustc 1.16.0-nightly (2782e8f8f 2017-01-12)*
808
809 ## 0.0.107 — 2017-01-11
810 * Update regex dependency
811 * Fix FP when matching `&&mut` by `&ref`
812 * Reintroduce `for (_, x) in &mut hash_map` -> `for x in hash_map.values_mut()`
813 * New lints: [`unused_io_amount`], [`forget_ref`], [`short_circuit_statement`]
814
815 ## 0.0.106 — 2017-01-04
816 * Fix FP introduced by rustup in [`wrong_self_convention`]
817
818 ## 0.0.105 — 2017-01-04
819 * Update to *rustc 1.16.0-nightly (468227129 2017-01-03)*
820 * New lints: [`deref_addrof`], [`double_parens`], [`pub_enum_variant_names`]
821 * Fix suggestion in [`new_without_default`]
822 * FP fix in [`absurd_extreme_comparisons`]
823
824 ## 0.0.104 — 2016-12-15
825 * Update to *rustc 1.15.0-nightly (8f02c429a 2016-12-15)*
826
827 ## 0.0.103 — 2016-11-25
828 * Update to *rustc 1.15.0-nightly (d5814b03e 2016-11-23)*
829
830 ## 0.0.102 — 2016-11-24
831 * Update to *rustc 1.15.0-nightly (3bf2be9ce 2016-11-22)*
832
833 ## 0.0.101 — 2016-11-23
834 * Update to *rustc 1.15.0-nightly (7b3eeea22 2016-11-21)*
835 * New lint: [`string_extend_chars`]
836
837 ## 0.0.100 — 2016-11-20
838 * Update to *rustc 1.15.0-nightly (ac635aa95 2016-11-18)*
839
840 ## 0.0.99 — 2016-11-18
841 * Update to rustc 1.15.0-nightly (0ed951993 2016-11-14)
842 * New lint: [`get_unwrap`]
843
844 ## 0.0.98 — 2016-11-08
845 * Fixes an issue due to a change in how cargo handles `--sysroot`, which broke `cargo clippy`
846
847 ## 0.0.97 — 2016-11-03
848 * For convenience, `cargo clippy` defines a `cargo-clippy` feature. This was
849   previously added for a short time under the name `clippy` but removed for
850   compatibility.
851 * `cargo clippy --help` is more helping (and less helpful :smile:)
852 * Rustup to *rustc 1.14.0-nightly (5665bdf3e 2016-11-02)*
853 * New lints: [`if_let_redundant_pattern_matching`], [`partialeq_ne_impl`]
854
855 ## 0.0.96 — 2016-10-22
856 * Rustup to *rustc 1.14.0-nightly (f09420685 2016-10-20)*
857 * New lint: [`iter_skip_next`]
858
859 ## 0.0.95 — 2016-10-06
860 * Rustup to *rustc 1.14.0-nightly (3210fd5c2 2016-10-05)*
861
862 ## 0.0.94 — 2016-10-04
863 * Fixes bustage on Windows due to forbidden directory name
864
865 ## 0.0.93 — 2016-10-03
866 * Rustup to *rustc 1.14.0-nightly (144af3e97 2016-10-02)*
867 * [`option_map_unwrap_or`] and [`option_map_unwrap_or_else`] are now
868   allowed by default.
869 * New lint: [`explicit_into_iter_loop`]
870
871 ## 0.0.92 — 2016-09-30
872 * Rustup to *rustc 1.14.0-nightly (289f3a4ca 2016-09-29)*
873
874 ## 0.0.91 — 2016-09-28
875 * Rustup to *rustc 1.13.0-nightly (d0623cf7b 2016-09-26)*
876
877 ## 0.0.90 — 2016-09-09
878 * Rustup to *rustc 1.13.0-nightly (f1f40f850 2016-09-09)*
879
880 ## 0.0.89 — 2016-09-06
881 * Rustup to *rustc 1.13.0-nightly (cbe4de78e 2016-09-05)*
882
883 ## 0.0.88 — 2016-09-04
884 * Rustup to *rustc 1.13.0-nightly (70598e04f 2016-09-03)*
885 * The following lints are not new but were only usable through the `clippy`
886   lint groups: [`filter_next`], [`for_loop_over_option`],
887   [`for_loop_over_result`] and [`match_overlapping_arm`]. You should now be
888   able to `#[allow/deny]` them individually and they are available directly
889   through `cargo clippy`.
890
891 ## 0.0.87 — 2016-08-31
892 * Rustup to *rustc 1.13.0-nightly (eac41469d 2016-08-30)*
893 * New lints: [`builtin_type_shadow`]
894 * Fix FP in [`zero_prefixed_literal`] and `0b`/`0o`
895
896 ## 0.0.86 — 2016-08-28
897 * Rustup to *rustc 1.13.0-nightly (a23064af5 2016-08-27)*
898 * New lints: [`missing_docs_in_private_items`], [`zero_prefixed_literal`]
899
900 ## 0.0.85 — 2016-08-19
901 * Fix ICE with [`useless_attribute`]
902 * [`useless_attribute`] ignores `unused_imports` on `use` statements
903
904 ## 0.0.84 — 2016-08-18
905 * Rustup to *rustc 1.13.0-nightly (aef6971ca 2016-08-17)*
906
907 ## 0.0.83 — 2016-08-17
908 * Rustup to *rustc 1.12.0-nightly (1bf5fa326 2016-08-16)*
909 * New lints: [`print_with_newline`], [`useless_attribute`]
910
911 ## 0.0.82 — 2016-08-17
912 * Rustup to *rustc 1.12.0-nightly (197be89f3 2016-08-15)*
913 * New lint: [`module_inception`]
914
915 ## 0.0.81 — 2016-08-14
916 * Rustup to *rustc 1.12.0-nightly (1deb02ea6 2016-08-12)*
917 * New lints: [`eval_order_dependence`], [`mixed_case_hex_literals`], [`unseparated_literal_suffix`]
918 * False positive fix in [`too_many_arguments`]
919 * Addition of functionality to [`needless_borrow`]
920 * Suggestions for [`clone_on_copy`]
921 * Bug fix in [`wrong_self_convention`]
922 * Doc improvements
923
924 ## 0.0.80 — 2016-07-31
925 * Rustup to *rustc 1.12.0-nightly (1225e122f 2016-07-30)*
926 * New lints: [`misrefactored_assign_op`], [`serde_api_misuse`]
927
928 ## 0.0.79 — 2016-07-10
929 * Rustup to *rustc 1.12.0-nightly (f93aaf84c 2016-07-09)*
930 * Major suggestions refactoring
931
932 ## 0.0.78 — 2016-07-02
933 * Rustup to *rustc 1.11.0-nightly (01411937f 2016-07-01)*
934 * New lints: [`wrong_transmute`], [`double_neg`], [`filter_map`]
935 * For compatibility, `cargo clippy` does not defines the `clippy` feature
936   introduced in 0.0.76 anymore
937 * [`collapsible_if`] now considers `if let`
938
939 ## 0.0.77 — 2016-06-21
940 * Rustup to *rustc 1.11.0-nightly (5522e678b 2016-06-20)*
941 * New lints: `stutter` and [`iter_nth`]
942
943 ## 0.0.76 — 2016-06-10
944 * Rustup to *rustc 1.11.0-nightly (7d2f75a95 2016-06-09)*
945 * `cargo clippy` now automatically defines the `clippy` feature
946 * New lint: [`not_unsafe_ptr_arg_deref`]
947
948 ## 0.0.75 — 2016-06-08
949 * Rustup to *rustc 1.11.0-nightly (763f9234b 2016-06-06)*
950
951 ## 0.0.74 — 2016-06-07
952 * Fix bug with `cargo-clippy` JSON parsing
953 * Add the `CLIPPY_DISABLE_DOCS_LINKS` environment variable to deactivate the
954   “for further information visit *lint-link*” message.
955
956 ## 0.0.73 — 2016-06-05
957 * Fix false positives in [`useless_let_if_seq`]
958
959 ## 0.0.72 — 2016-06-04
960 * Fix false positives in [`useless_let_if_seq`]
961
962 ## 0.0.71 — 2016-05-31
963 * Rustup to *rustc 1.11.0-nightly (a967611d8 2016-05-30)*
964 * New lint: [`useless_let_if_seq`]
965
966 ## 0.0.70 — 2016-05-28
967 * Rustup to *rustc 1.10.0-nightly (7bddce693 2016-05-27)*
968 * [`invalid_regex`] and [`trivial_regex`] can now warn on `RegexSet::new`,
969   `RegexBuilder::new` and byte regexes
970
971 ## 0.0.69 — 2016-05-20
972 * Rustup to *rustc 1.10.0-nightly (476fe6eef 2016-05-21)*
973 * [`used_underscore_binding`] has been made `Allow` temporarily
974
975 ## 0.0.68 — 2016-05-17
976 * Rustup to *rustc 1.10.0-nightly (cd6a40017 2016-05-16)*
977 * New lint: [`unnecessary_operation`]
978
979 ## 0.0.67 — 2016-05-12
980 * Rustup to *rustc 1.10.0-nightly (22ac88f1a 2016-05-11)*
981
982 ## 0.0.66 — 2016-05-11
983 * New `cargo clippy` subcommand
984 * New lints: [`assign_op_pattern`], [`assign_ops`], [`needless_borrow`]
985
986 ## 0.0.65 — 2016-05-08
987 * Rustup to *rustc 1.10.0-nightly (62e2b2fb7 2016-05-06)*
988 * New lints: [`float_arithmetic`], [`integer_arithmetic`]
989
990 ## 0.0.64 — 2016-04-26
991 * Rustup to *rustc 1.10.0-nightly (645dd013a 2016-04-24)*
992 * New lints: [`temporary_cstring_as_ptr`], [`unsafe_removed_from_name`], and [`mem_forget`]
993
994 ## 0.0.63 — 2016-04-08
995 * Rustup to *rustc 1.9.0-nightly (7979dd608 2016-04-07)*
996
997 ## 0.0.62 — 2016-04-07
998 * Rustup to *rustc 1.9.0-nightly (bf5da36f1 2016-04-06)*
999
1000 ## 0.0.61 — 2016-04-03
1001 * Rustup to *rustc 1.9.0-nightly (5ab11d72c 2016-04-02)*
1002 * New lint: [`invalid_upcast_comparisons`]
1003
1004 ## 0.0.60 — 2016-04-01
1005 * Rustup to *rustc 1.9.0-nightly (e1195c24b 2016-03-31)*
1006
1007 ## 0.0.59 — 2016-03-31
1008 * Rustup to *rustc 1.9.0-nightly (30a3849f2 2016-03-30)*
1009 * New lints: [`logic_bug`], [`nonminimal_bool`]
1010 * Fixed: [`match_same_arms`] now ignores arms with guards
1011 * Improved: [`useless_vec`] now warns on `for … in vec![…]`
1012
1013 ## 0.0.58 — 2016-03-27
1014 * Rustup to *rustc 1.9.0-nightly (d5a91e695 2016-03-26)*
1015 * New lint: [`doc_markdown`]
1016
1017 ## 0.0.57 — 2016-03-27
1018 * Update to *rustc 1.9.0-nightly (a1e29daf1 2016-03-25)*
1019 * Deprecated lints: [`str_to_string`], [`string_to_string`], [`unstable_as_slice`], [`unstable_as_mut_slice`]
1020 * New lint: [`crosspointer_transmute`]
1021
1022 ## 0.0.56 — 2016-03-23
1023 * Update to *rustc 1.9.0-nightly (0dcc413e4 2016-03-22)*
1024 * New lints: [`many_single_char_names`] and [`similar_names`]
1025
1026 ## 0.0.55 — 2016-03-21
1027 * Update to *rustc 1.9.0-nightly (02310fd31 2016-03-19)*
1028
1029 ## 0.0.54 — 2016-03-16
1030 * Update to *rustc 1.9.0-nightly (c66d2380a 2016-03-15)*
1031
1032 ## 0.0.53 — 2016-03-15
1033 * Add a [configuration file]
1034
1035 ## ~~0.0.52~~
1036
1037 ## 0.0.51 — 2016-03-13
1038 * Add `str` to types considered by [`len_zero`]
1039 * New lints: [`indexing_slicing`]
1040
1041 ## 0.0.50 — 2016-03-11
1042 * Update to *rustc 1.9.0-nightly (c9629d61c 2016-03-10)*
1043
1044 ## 0.0.49 — 2016-03-09
1045 * Update to *rustc 1.9.0-nightly (eabfc160f 2016-03-08)*
1046 * New lints: [`overflow_check_conditional`], [`unused_label`], [`new_without_default`]
1047
1048 ## 0.0.48 — 2016-03-07
1049 * Fixed: ICE in [`needless_range_loop`] with globals
1050
1051 ## 0.0.47 — 2016-03-07
1052 * Update to *rustc 1.9.0-nightly (998a6720b 2016-03-07)*
1053 * New lint: [`redundant_closure_call`]
1054
1055 [`AsMut`]: https://doc.rust-lang.org/std/convert/trait.AsMut.html
1056 [`AsRef`]: https://doc.rust-lang.org/std/convert/trait.AsRef.html
1057 [configuration file]: ./rust-clippy#configuration
1058 [pull3665]: https://github.com/rust-lang/rust-clippy/pull/3665
1059 [adding_lints]: https://github.com/rust-lang/rust-clippy/blob/master/doc/adding_lints.md
1060
1061 <!-- lint disable no-unused-definitions -->
1062 <!-- begin autogenerated links to lint list -->
1063 [`absurd_extreme_comparisons`]: https://rust-lang.github.io/rust-clippy/master/index.html#absurd_extreme_comparisons
1064 [`almost_swapped`]: https://rust-lang.github.io/rust-clippy/master/index.html#almost_swapped
1065 [`approx_constant`]: https://rust-lang.github.io/rust-clippy/master/index.html#approx_constant
1066 [`as_conversions`]: https://rust-lang.github.io/rust-clippy/master/index.html#as_conversions
1067 [`assertions_on_constants`]: https://rust-lang.github.io/rust-clippy/master/index.html#assertions_on_constants
1068 [`assign_op_pattern`]: https://rust-lang.github.io/rust-clippy/master/index.html#assign_op_pattern
1069 [`assign_ops`]: https://rust-lang.github.io/rust-clippy/master/index.html#assign_ops
1070 [`bad_bit_mask`]: https://rust-lang.github.io/rust-clippy/master/index.html#bad_bit_mask
1071 [`blacklisted_name`]: https://rust-lang.github.io/rust-clippy/master/index.html#blacklisted_name
1072 [`block_in_if_condition_expr`]: https://rust-lang.github.io/rust-clippy/master/index.html#block_in_if_condition_expr
1073 [`block_in_if_condition_stmt`]: https://rust-lang.github.io/rust-clippy/master/index.html#block_in_if_condition_stmt
1074 [`bool_comparison`]: https://rust-lang.github.io/rust-clippy/master/index.html#bool_comparison
1075 [`borrow_interior_mutable_const`]: https://rust-lang.github.io/rust-clippy/master/index.html#borrow_interior_mutable_const
1076 [`borrowed_box`]: https://rust-lang.github.io/rust-clippy/master/index.html#borrowed_box
1077 [`box_vec`]: https://rust-lang.github.io/rust-clippy/master/index.html#box_vec
1078 [`boxed_local`]: https://rust-lang.github.io/rust-clippy/master/index.html#boxed_local
1079 [`builtin_type_shadow`]: https://rust-lang.github.io/rust-clippy/master/index.html#builtin_type_shadow
1080 [`cargo_common_metadata`]: https://rust-lang.github.io/rust-clippy/master/index.html#cargo_common_metadata
1081 [`cast_lossless`]: https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless
1082 [`cast_possible_truncation`]: https://rust-lang.github.io/rust-clippy/master/index.html#cast_possible_truncation
1083 [`cast_possible_wrap`]: https://rust-lang.github.io/rust-clippy/master/index.html#cast_possible_wrap
1084 [`cast_precision_loss`]: https://rust-lang.github.io/rust-clippy/master/index.html#cast_precision_loss
1085 [`cast_ptr_alignment`]: https://rust-lang.github.io/rust-clippy/master/index.html#cast_ptr_alignment
1086 [`cast_ref_to_mut`]: https://rust-lang.github.io/rust-clippy/master/index.html#cast_ref_to_mut
1087 [`cast_sign_loss`]: https://rust-lang.github.io/rust-clippy/master/index.html#cast_sign_loss
1088 [`char_lit_as_u8`]: https://rust-lang.github.io/rust-clippy/master/index.html#char_lit_as_u8
1089 [`chars_last_cmp`]: https://rust-lang.github.io/rust-clippy/master/index.html#chars_last_cmp
1090 [`chars_next_cmp`]: https://rust-lang.github.io/rust-clippy/master/index.html#chars_next_cmp
1091 [`checked_conversions`]: https://rust-lang.github.io/rust-clippy/master/index.html#checked_conversions
1092 [`clone_double_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#clone_double_ref
1093 [`clone_on_copy`]: https://rust-lang.github.io/rust-clippy/master/index.html#clone_on_copy
1094 [`clone_on_ref_ptr`]: https://rust-lang.github.io/rust-clippy/master/index.html#clone_on_ref_ptr
1095 [`cmp_nan`]: https://rust-lang.github.io/rust-clippy/master/index.html#cmp_nan
1096 [`cmp_null`]: https://rust-lang.github.io/rust-clippy/master/index.html#cmp_null
1097 [`cmp_owned`]: https://rust-lang.github.io/rust-clippy/master/index.html#cmp_owned
1098 [`cognitive_complexity`]: https://rust-lang.github.io/rust-clippy/master/index.html#cognitive_complexity
1099 [`collapsible_if`]: https://rust-lang.github.io/rust-clippy/master/index.html#collapsible_if
1100 [`comparison_chain`]: https://rust-lang.github.io/rust-clippy/master/index.html#comparison_chain
1101 [`copy_iterator`]: https://rust-lang.github.io/rust-clippy/master/index.html#copy_iterator
1102 [`crosspointer_transmute`]: https://rust-lang.github.io/rust-clippy/master/index.html#crosspointer_transmute
1103 [`dbg_macro`]: https://rust-lang.github.io/rust-clippy/master/index.html#dbg_macro
1104 [`debug_assert_with_mut_call`]: https://rust-lang.github.io/rust-clippy/master/index.html#debug_assert_with_mut_call
1105 [`decimal_literal_representation`]: https://rust-lang.github.io/rust-clippy/master/index.html#decimal_literal_representation
1106 [`declare_interior_mutable_const`]: https://rust-lang.github.io/rust-clippy/master/index.html#declare_interior_mutable_const
1107 [`default_trait_access`]: https://rust-lang.github.io/rust-clippy/master/index.html#default_trait_access
1108 [`deprecated_cfg_attr`]: https://rust-lang.github.io/rust-clippy/master/index.html#deprecated_cfg_attr
1109 [`deprecated_semver`]: https://rust-lang.github.io/rust-clippy/master/index.html#deprecated_semver
1110 [`deref_addrof`]: https://rust-lang.github.io/rust-clippy/master/index.html#deref_addrof
1111 [`derive_hash_xor_eq`]: https://rust-lang.github.io/rust-clippy/master/index.html#derive_hash_xor_eq
1112 [`diverging_sub_expression`]: https://rust-lang.github.io/rust-clippy/master/index.html#diverging_sub_expression
1113 [`doc_markdown`]: https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown
1114 [`double_comparisons`]: https://rust-lang.github.io/rust-clippy/master/index.html#double_comparisons
1115 [`double_must_use`]: https://rust-lang.github.io/rust-clippy/master/index.html#double_must_use
1116 [`double_neg`]: https://rust-lang.github.io/rust-clippy/master/index.html#double_neg
1117 [`double_parens`]: https://rust-lang.github.io/rust-clippy/master/index.html#double_parens
1118 [`drop_bounds`]: https://rust-lang.github.io/rust-clippy/master/index.html#drop_bounds
1119 [`drop_copy`]: https://rust-lang.github.io/rust-clippy/master/index.html#drop_copy
1120 [`drop_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#drop_ref
1121 [`duplicate_underscore_argument`]: https://rust-lang.github.io/rust-clippy/master/index.html#duplicate_underscore_argument
1122 [`duration_subsec`]: https://rust-lang.github.io/rust-clippy/master/index.html#duration_subsec
1123 [`else_if_without_else`]: https://rust-lang.github.io/rust-clippy/master/index.html#else_if_without_else
1124 [`empty_enum`]: https://rust-lang.github.io/rust-clippy/master/index.html#empty_enum
1125 [`empty_line_after_outer_attr`]: https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_outer_attr
1126 [`empty_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#empty_loop
1127 [`enum_clike_unportable_variant`]: https://rust-lang.github.io/rust-clippy/master/index.html#enum_clike_unportable_variant
1128 [`enum_glob_use`]: https://rust-lang.github.io/rust-clippy/master/index.html#enum_glob_use
1129 [`enum_variant_names`]: https://rust-lang.github.io/rust-clippy/master/index.html#enum_variant_names
1130 [`eq_op`]: https://rust-lang.github.io/rust-clippy/master/index.html#eq_op
1131 [`erasing_op`]: https://rust-lang.github.io/rust-clippy/master/index.html#erasing_op
1132 [`eval_order_dependence`]: https://rust-lang.github.io/rust-clippy/master/index.html#eval_order_dependence
1133 [`excessive_precision`]: https://rust-lang.github.io/rust-clippy/master/index.html#excessive_precision
1134 [`exit`]: https://rust-lang.github.io/rust-clippy/master/index.html#exit
1135 [`expect_fun_call`]: https://rust-lang.github.io/rust-clippy/master/index.html#expect_fun_call
1136 [`expl_impl_clone_on_copy`]: https://rust-lang.github.io/rust-clippy/master/index.html#expl_impl_clone_on_copy
1137 [`explicit_counter_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#explicit_counter_loop
1138 [`explicit_into_iter_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#explicit_into_iter_loop
1139 [`explicit_iter_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#explicit_iter_loop
1140 [`explicit_write`]: https://rust-lang.github.io/rust-clippy/master/index.html#explicit_write
1141 [`extend_from_slice`]: https://rust-lang.github.io/rust-clippy/master/index.html#extend_from_slice
1142 [`extra_unused_lifetimes`]: https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_lifetimes
1143 [`fallible_impl_from`]: https://rust-lang.github.io/rust-clippy/master/index.html#fallible_impl_from
1144 [`filetype_is_file`]: https://rust-lang.github.io/rust-clippy/master/index.html#filetype_is_file
1145 [`filter_map`]: https://rust-lang.github.io/rust-clippy/master/index.html#filter_map
1146 [`filter_map_next`]: https://rust-lang.github.io/rust-clippy/master/index.html#filter_map_next
1147 [`filter_next`]: https://rust-lang.github.io/rust-clippy/master/index.html#filter_next
1148 [`find_map`]: https://rust-lang.github.io/rust-clippy/master/index.html#find_map
1149 [`flat_map_identity`]: https://rust-lang.github.io/rust-clippy/master/index.html#flat_map_identity
1150 [`float_arithmetic`]: https://rust-lang.github.io/rust-clippy/master/index.html#float_arithmetic
1151 [`float_cmp`]: https://rust-lang.github.io/rust-clippy/master/index.html#float_cmp
1152 [`float_cmp_const`]: https://rust-lang.github.io/rust-clippy/master/index.html#float_cmp_const
1153 [`fn_params_excessive_bools`]: https://rust-lang.github.io/rust-clippy/master/index.html#fn_params_excessive_bools
1154 [`fn_to_numeric_cast`]: https://rust-lang.github.io/rust-clippy/master/index.html#fn_to_numeric_cast
1155 [`fn_to_numeric_cast_with_truncation`]: https://rust-lang.github.io/rust-clippy/master/index.html#fn_to_numeric_cast_with_truncation
1156 [`for_kv_map`]: https://rust-lang.github.io/rust-clippy/master/index.html#for_kv_map
1157 [`for_loop_over_option`]: https://rust-lang.github.io/rust-clippy/master/index.html#for_loop_over_option
1158 [`for_loop_over_result`]: https://rust-lang.github.io/rust-clippy/master/index.html#for_loop_over_result
1159 [`forget_copy`]: https://rust-lang.github.io/rust-clippy/master/index.html#forget_copy
1160 [`forget_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#forget_ref
1161 [`get_last_with_len`]: https://rust-lang.github.io/rust-clippy/master/index.html#get_last_with_len
1162 [`get_unwrap`]: https://rust-lang.github.io/rust-clippy/master/index.html#get_unwrap
1163 [`identity_conversion`]: https://rust-lang.github.io/rust-clippy/master/index.html#identity_conversion
1164 [`identity_op`]: https://rust-lang.github.io/rust-clippy/master/index.html#identity_op
1165 [`if_let_redundant_pattern_matching`]: https://rust-lang.github.io/rust-clippy/master/index.html#if_let_redundant_pattern_matching
1166 [`if_let_some_result`]: https://rust-lang.github.io/rust-clippy/master/index.html#if_let_some_result
1167 [`if_not_else`]: https://rust-lang.github.io/rust-clippy/master/index.html#if_not_else
1168 [`if_same_then_else`]: https://rust-lang.github.io/rust-clippy/master/index.html#if_same_then_else
1169 [`ifs_same_cond`]: https://rust-lang.github.io/rust-clippy/master/index.html#ifs_same_cond
1170 [`implicit_hasher`]: https://rust-lang.github.io/rust-clippy/master/index.html#implicit_hasher
1171 [`implicit_return`]: https://rust-lang.github.io/rust-clippy/master/index.html#implicit_return
1172 [`inconsistent_digit_grouping`]: https://rust-lang.github.io/rust-clippy/master/index.html#inconsistent_digit_grouping
1173 [`indexing_slicing`]: https://rust-lang.github.io/rust-clippy/master/index.html#indexing_slicing
1174 [`ineffective_bit_mask`]: https://rust-lang.github.io/rust-clippy/master/index.html#ineffective_bit_mask
1175 [`inefficient_to_string`]: https://rust-lang.github.io/rust-clippy/master/index.html#inefficient_to_string
1176 [`infallible_destructuring_match`]: https://rust-lang.github.io/rust-clippy/master/index.html#infallible_destructuring_match
1177 [`infinite_iter`]: https://rust-lang.github.io/rust-clippy/master/index.html#infinite_iter
1178 [`inherent_to_string`]: https://rust-lang.github.io/rust-clippy/master/index.html#inherent_to_string
1179 [`inherent_to_string_shadow_display`]: https://rust-lang.github.io/rust-clippy/master/index.html#inherent_to_string_shadow_display
1180 [`inline_always`]: https://rust-lang.github.io/rust-clippy/master/index.html#inline_always
1181 [`inline_fn_without_body`]: https://rust-lang.github.io/rust-clippy/master/index.html#inline_fn_without_body
1182 [`int_plus_one`]: https://rust-lang.github.io/rust-clippy/master/index.html#int_plus_one
1183 [`integer_arithmetic`]: https://rust-lang.github.io/rust-clippy/master/index.html#integer_arithmetic
1184 [`integer_division`]: https://rust-lang.github.io/rust-clippy/master/index.html#integer_division
1185 [`into_iter_on_array`]: https://rust-lang.github.io/rust-clippy/master/index.html#into_iter_on_array
1186 [`into_iter_on_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#into_iter_on_ref
1187 [`invalid_atomic_ordering`]: https://rust-lang.github.io/rust-clippy/master/index.html#invalid_atomic_ordering
1188 [`invalid_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#invalid_ref
1189 [`invalid_regex`]: https://rust-lang.github.io/rust-clippy/master/index.html#invalid_regex
1190 [`invalid_upcast_comparisons`]: https://rust-lang.github.io/rust-clippy/master/index.html#invalid_upcast_comparisons
1191 [`items_after_statements`]: https://rust-lang.github.io/rust-clippy/master/index.html#items_after_statements
1192 [`iter_cloned_collect`]: https://rust-lang.github.io/rust-clippy/master/index.html#iter_cloned_collect
1193 [`iter_next_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#iter_next_loop
1194 [`iter_nth`]: https://rust-lang.github.io/rust-clippy/master/index.html#iter_nth
1195 [`iter_nth_zero`]: https://rust-lang.github.io/rust-clippy/master/index.html#iter_nth_zero
1196 [`iter_skip_next`]: https://rust-lang.github.io/rust-clippy/master/index.html#iter_skip_next
1197 [`iterator_step_by_zero`]: https://rust-lang.github.io/rust-clippy/master/index.html#iterator_step_by_zero
1198 [`just_underscores_and_digits`]: https://rust-lang.github.io/rust-clippy/master/index.html#just_underscores_and_digits
1199 [`large_digit_groups`]: https://rust-lang.github.io/rust-clippy/master/index.html#large_digit_groups
1200 [`large_enum_variant`]: https://rust-lang.github.io/rust-clippy/master/index.html#large_enum_variant
1201 [`large_stack_arrays`]: https://rust-lang.github.io/rust-clippy/master/index.html#large_stack_arrays
1202 [`len_without_is_empty`]: https://rust-lang.github.io/rust-clippy/master/index.html#len_without_is_empty
1203 [`len_zero`]: https://rust-lang.github.io/rust-clippy/master/index.html#len_zero
1204 [`let_and_return`]: https://rust-lang.github.io/rust-clippy/master/index.html#let_and_return
1205 [`let_underscore_lock`]: https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_lock
1206 [`let_underscore_must_use`]: https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_must_use
1207 [`let_unit_value`]: https://rust-lang.github.io/rust-clippy/master/index.html#let_unit_value
1208 [`linkedlist`]: https://rust-lang.github.io/rust-clippy/master/index.html#linkedlist
1209 [`logic_bug`]: https://rust-lang.github.io/rust-clippy/master/index.html#logic_bug
1210 [`main_recursion`]: https://rust-lang.github.io/rust-clippy/master/index.html#main_recursion
1211 [`manual_memcpy`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_memcpy
1212 [`manual_mul_add`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_mul_add
1213 [`manual_saturating_arithmetic`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_saturating_arithmetic
1214 [`manual_swap`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_swap
1215 [`many_single_char_names`]: https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names
1216 [`map_clone`]: https://rust-lang.github.io/rust-clippy/master/index.html#map_clone
1217 [`map_entry`]: https://rust-lang.github.io/rust-clippy/master/index.html#map_entry
1218 [`map_flatten`]: https://rust-lang.github.io/rust-clippy/master/index.html#map_flatten
1219 [`match_as_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#match_as_ref
1220 [`match_bool`]: https://rust-lang.github.io/rust-clippy/master/index.html#match_bool
1221 [`match_overlapping_arm`]: https://rust-lang.github.io/rust-clippy/master/index.html#match_overlapping_arm
1222 [`match_ref_pats`]: https://rust-lang.github.io/rust-clippy/master/index.html#match_ref_pats
1223 [`match_same_arms`]: https://rust-lang.github.io/rust-clippy/master/index.html#match_same_arms
1224 [`match_single_binding`]: https://rust-lang.github.io/rust-clippy/master/index.html#match_single_binding
1225 [`match_wild_err_arm`]: https://rust-lang.github.io/rust-clippy/master/index.html#match_wild_err_arm
1226 [`maybe_infinite_iter`]: https://rust-lang.github.io/rust-clippy/master/index.html#maybe_infinite_iter
1227 [`mem_discriminant_non_enum`]: https://rust-lang.github.io/rust-clippy/master/index.html#mem_discriminant_non_enum
1228 [`mem_forget`]: https://rust-lang.github.io/rust-clippy/master/index.html#mem_forget
1229 [`mem_replace_option_with_none`]: https://rust-lang.github.io/rust-clippy/master/index.html#mem_replace_option_with_none
1230 [`mem_replace_with_default`]: https://rust-lang.github.io/rust-clippy/master/index.html#mem_replace_with_default
1231 [`mem_replace_with_uninit`]: https://rust-lang.github.io/rust-clippy/master/index.html#mem_replace_with_uninit
1232 [`min_max`]: https://rust-lang.github.io/rust-clippy/master/index.html#min_max
1233 [`misaligned_transmute`]: https://rust-lang.github.io/rust-clippy/master/index.html#misaligned_transmute
1234 [`misrefactored_assign_op`]: https://rust-lang.github.io/rust-clippy/master/index.html#misrefactored_assign_op
1235 [`missing_const_for_fn`]: https://rust-lang.github.io/rust-clippy/master/index.html#missing_const_for_fn
1236 [`missing_docs_in_private_items`]: https://rust-lang.github.io/rust-clippy/master/index.html#missing_docs_in_private_items
1237 [`missing_errors_doc`]: https://rust-lang.github.io/rust-clippy/master/index.html#missing_errors_doc
1238 [`missing_inline_in_public_items`]: https://rust-lang.github.io/rust-clippy/master/index.html#missing_inline_in_public_items
1239 [`missing_safety_doc`]: https://rust-lang.github.io/rust-clippy/master/index.html#missing_safety_doc
1240 [`mistyped_literal_suffixes`]: https://rust-lang.github.io/rust-clippy/master/index.html#mistyped_literal_suffixes
1241 [`mixed_case_hex_literals`]: https://rust-lang.github.io/rust-clippy/master/index.html#mixed_case_hex_literals
1242 [`module_inception`]: https://rust-lang.github.io/rust-clippy/master/index.html#module_inception
1243 [`module_name_repetitions`]: https://rust-lang.github.io/rust-clippy/master/index.html#module_name_repetitions
1244 [`modulo_arithmetic`]: https://rust-lang.github.io/rust-clippy/master/index.html#modulo_arithmetic
1245 [`modulo_one`]: https://rust-lang.github.io/rust-clippy/master/index.html#modulo_one
1246 [`multiple_crate_versions`]: https://rust-lang.github.io/rust-clippy/master/index.html#multiple_crate_versions
1247 [`multiple_inherent_impl`]: https://rust-lang.github.io/rust-clippy/master/index.html#multiple_inherent_impl
1248 [`must_use_candidate`]: https://rust-lang.github.io/rust-clippy/master/index.html#must_use_candidate
1249 [`must_use_unit`]: https://rust-lang.github.io/rust-clippy/master/index.html#must_use_unit
1250 [`mut_from_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#mut_from_ref
1251 [`mut_mut`]: https://rust-lang.github.io/rust-clippy/master/index.html#mut_mut
1252 [`mut_range_bound`]: https://rust-lang.github.io/rust-clippy/master/index.html#mut_range_bound
1253 [`mutable_key_type`]: https://rust-lang.github.io/rust-clippy/master/index.html#mutable_key_type
1254 [`mutex_atomic`]: https://rust-lang.github.io/rust-clippy/master/index.html#mutex_atomic
1255 [`mutex_integer`]: https://rust-lang.github.io/rust-clippy/master/index.html#mutex_integer
1256 [`naive_bytecount`]: https://rust-lang.github.io/rust-clippy/master/index.html#naive_bytecount
1257 [`needless_bool`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_bool
1258 [`needless_borrow`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
1259 [`needless_borrowed_reference`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrowed_reference
1260 [`needless_collect`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_collect
1261 [`needless_continue`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_continue
1262 [`needless_doctest_main`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_doctest_main
1263 [`needless_lifetimes`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
1264 [`needless_pass_by_value`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_pass_by_value
1265 [`needless_range_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_range_loop
1266 [`needless_return`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
1267 [`needless_update`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_update
1268 [`neg_cmp_op_on_partial_ord`]: https://rust-lang.github.io/rust-clippy/master/index.html#neg_cmp_op_on_partial_ord
1269 [`neg_multiply`]: https://rust-lang.github.io/rust-clippy/master/index.html#neg_multiply
1270 [`never_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#never_loop
1271 [`new_ret_no_self`]: https://rust-lang.github.io/rust-clippy/master/index.html#new_ret_no_self
1272 [`new_without_default`]: https://rust-lang.github.io/rust-clippy/master/index.html#new_without_default
1273 [`no_effect`]: https://rust-lang.github.io/rust-clippy/master/index.html#no_effect
1274 [`non_ascii_literal`]: https://rust-lang.github.io/rust-clippy/master/index.html#non_ascii_literal
1275 [`nonminimal_bool`]: https://rust-lang.github.io/rust-clippy/master/index.html#nonminimal_bool
1276 [`nonsensical_open_options`]: https://rust-lang.github.io/rust-clippy/master/index.html#nonsensical_open_options
1277 [`not_unsafe_ptr_arg_deref`]: https://rust-lang.github.io/rust-clippy/master/index.html#not_unsafe_ptr_arg_deref
1278 [`ok_expect`]: https://rust-lang.github.io/rust-clippy/master/index.html#ok_expect
1279 [`op_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#op_ref
1280 [`option_and_then_some`]: https://rust-lang.github.io/rust-clippy/master/index.html#option_and_then_some
1281 [`option_as_ref_deref`]: https://rust-lang.github.io/rust-clippy/master/index.html#option_as_ref_deref
1282 [`option_env_unwrap`]: https://rust-lang.github.io/rust-clippy/master/index.html#option_env_unwrap
1283 [`option_expect_used`]: https://rust-lang.github.io/rust-clippy/master/index.html#option_expect_used
1284 [`option_map_or_none`]: https://rust-lang.github.io/rust-clippy/master/index.html#option_map_or_none
1285 [`option_map_unit_fn`]: https://rust-lang.github.io/rust-clippy/master/index.html#option_map_unit_fn
1286 [`option_map_unwrap_or`]: https://rust-lang.github.io/rust-clippy/master/index.html#option_map_unwrap_or
1287 [`option_map_unwrap_or_else`]: https://rust-lang.github.io/rust-clippy/master/index.html#option_map_unwrap_or_else
1288 [`option_option`]: https://rust-lang.github.io/rust-clippy/master/index.html#option_option
1289 [`option_unwrap_used`]: https://rust-lang.github.io/rust-clippy/master/index.html#option_unwrap_used
1290 [`or_fun_call`]: https://rust-lang.github.io/rust-clippy/master/index.html#or_fun_call
1291 [`out_of_bounds_indexing`]: https://rust-lang.github.io/rust-clippy/master/index.html#out_of_bounds_indexing
1292 [`overflow_check_conditional`]: https://rust-lang.github.io/rust-clippy/master/index.html#overflow_check_conditional
1293 [`panic`]: https://rust-lang.github.io/rust-clippy/master/index.html#panic
1294 [`panic_params`]: https://rust-lang.github.io/rust-clippy/master/index.html#panic_params
1295 [`panicking_unwrap`]: https://rust-lang.github.io/rust-clippy/master/index.html#panicking_unwrap
1296 [`partialeq_ne_impl`]: https://rust-lang.github.io/rust-clippy/master/index.html#partialeq_ne_impl
1297 [`path_buf_push_overwrite`]: https://rust-lang.github.io/rust-clippy/master/index.html#path_buf_push_overwrite
1298 [`possible_missing_comma`]: https://rust-lang.github.io/rust-clippy/master/index.html#possible_missing_comma
1299 [`precedence`]: https://rust-lang.github.io/rust-clippy/master/index.html#precedence
1300 [`print_literal`]: https://rust-lang.github.io/rust-clippy/master/index.html#print_literal
1301 [`print_stdout`]: https://rust-lang.github.io/rust-clippy/master/index.html#print_stdout
1302 [`print_with_newline`]: https://rust-lang.github.io/rust-clippy/master/index.html#print_with_newline
1303 [`println_empty_string`]: https://rust-lang.github.io/rust-clippy/master/index.html#println_empty_string
1304 [`ptr_arg`]: https://rust-lang.github.io/rust-clippy/master/index.html#ptr_arg
1305 [`ptr_offset_with_cast`]: https://rust-lang.github.io/rust-clippy/master/index.html#ptr_offset_with_cast
1306 [`pub_enum_variant_names`]: https://rust-lang.github.io/rust-clippy/master/index.html#pub_enum_variant_names
1307 [`question_mark`]: https://rust-lang.github.io/rust-clippy/master/index.html#question_mark
1308 [`range_minus_one`]: https://rust-lang.github.io/rust-clippy/master/index.html#range_minus_one
1309 [`range_plus_one`]: https://rust-lang.github.io/rust-clippy/master/index.html#range_plus_one
1310 [`range_step_by_zero`]: https://rust-lang.github.io/rust-clippy/master/index.html#range_step_by_zero
1311 [`range_zip_with_len`]: https://rust-lang.github.io/rust-clippy/master/index.html#range_zip_with_len
1312 [`redundant_clone`]: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_clone
1313 [`redundant_closure`]: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure
1314 [`redundant_closure_call`]: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure_call
1315 [`redundant_closure_for_method_calls`]: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure_for_method_calls
1316 [`redundant_field_names`]: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names
1317 [`redundant_pattern`]: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_pattern
1318 [`redundant_pattern_matching`]: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_pattern_matching
1319 [`redundant_static_lifetimes`]: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_static_lifetimes
1320 [`ref_in_deref`]: https://rust-lang.github.io/rust-clippy/master/index.html#ref_in_deref
1321 [`regex_macro`]: https://rust-lang.github.io/rust-clippy/master/index.html#regex_macro
1322 [`replace_consts`]: https://rust-lang.github.io/rust-clippy/master/index.html#replace_consts
1323 [`result_expect_used`]: https://rust-lang.github.io/rust-clippy/master/index.html#result_expect_used
1324 [`result_map_unit_fn`]: https://rust-lang.github.io/rust-clippy/master/index.html#result_map_unit_fn
1325 [`result_map_unwrap_or_else`]: https://rust-lang.github.io/rust-clippy/master/index.html#result_map_unwrap_or_else
1326 [`result_unwrap_used`]: https://rust-lang.github.io/rust-clippy/master/index.html#result_unwrap_used
1327 [`reverse_range_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#reverse_range_loop
1328 [`same_functions_in_if_condition`]: https://rust-lang.github.io/rust-clippy/master/index.html#same_functions_in_if_condition
1329 [`search_is_some`]: https://rust-lang.github.io/rust-clippy/master/index.html#search_is_some
1330 [`serde_api_misuse`]: https://rust-lang.github.io/rust-clippy/master/index.html#serde_api_misuse
1331 [`shadow_reuse`]: https://rust-lang.github.io/rust-clippy/master/index.html#shadow_reuse
1332 [`shadow_same`]: https://rust-lang.github.io/rust-clippy/master/index.html#shadow_same
1333 [`shadow_unrelated`]: https://rust-lang.github.io/rust-clippy/master/index.html#shadow_unrelated
1334 [`short_circuit_statement`]: https://rust-lang.github.io/rust-clippy/master/index.html#short_circuit_statement
1335 [`should_assert_eq`]: https://rust-lang.github.io/rust-clippy/master/index.html#should_assert_eq
1336 [`should_implement_trait`]: https://rust-lang.github.io/rust-clippy/master/index.html#should_implement_trait
1337 [`similar_names`]: https://rust-lang.github.io/rust-clippy/master/index.html#similar_names
1338 [`single_char_pattern`]: https://rust-lang.github.io/rust-clippy/master/index.html#single_char_pattern
1339 [`single_component_path_imports`]: https://rust-lang.github.io/rust-clippy/master/index.html#single_component_path_imports
1340 [`single_match`]: https://rust-lang.github.io/rust-clippy/master/index.html#single_match
1341 [`single_match_else`]: https://rust-lang.github.io/rust-clippy/master/index.html#single_match_else
1342 [`skip_while_next`]: https://rust-lang.github.io/rust-clippy/master/index.html#skip_while_next
1343 [`slow_vector_initialization`]: https://rust-lang.github.io/rust-clippy/master/index.html#slow_vector_initialization
1344 [`str_to_string`]: https://rust-lang.github.io/rust-clippy/master/index.html#str_to_string
1345 [`string_add`]: https://rust-lang.github.io/rust-clippy/master/index.html#string_add
1346 [`string_add_assign`]: https://rust-lang.github.io/rust-clippy/master/index.html#string_add_assign
1347 [`string_extend_chars`]: https://rust-lang.github.io/rust-clippy/master/index.html#string_extend_chars
1348 [`string_lit_as_bytes`]: https://rust-lang.github.io/rust-clippy/master/index.html#string_lit_as_bytes
1349 [`string_to_string`]: https://rust-lang.github.io/rust-clippy/master/index.html#string_to_string
1350 [`struct_excessive_bools`]: https://rust-lang.github.io/rust-clippy/master/index.html#struct_excessive_bools
1351 [`suspicious_arithmetic_impl`]: https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_arithmetic_impl
1352 [`suspicious_assignment_formatting`]: https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_assignment_formatting
1353 [`suspicious_else_formatting`]: https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_else_formatting
1354 [`suspicious_map`]: https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_map
1355 [`suspicious_op_assign_impl`]: https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_op_assign_impl
1356 [`suspicious_unary_op_formatting`]: https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_unary_op_formatting
1357 [`tabs_in_doc_comments`]: https://rust-lang.github.io/rust-clippy/master/index.html#tabs_in_doc_comments
1358 [`temporary_assignment`]: https://rust-lang.github.io/rust-clippy/master/index.html#temporary_assignment
1359 [`temporary_cstring_as_ptr`]: https://rust-lang.github.io/rust-clippy/master/index.html#temporary_cstring_as_ptr
1360 [`to_digit_is_some`]: https://rust-lang.github.io/rust-clippy/master/index.html#to_digit_is_some
1361 [`todo`]: https://rust-lang.github.io/rust-clippy/master/index.html#todo
1362 [`too_many_arguments`]: https://rust-lang.github.io/rust-clippy/master/index.html#too_many_arguments
1363 [`too_many_lines`]: https://rust-lang.github.io/rust-clippy/master/index.html#too_many_lines
1364 [`toplevel_ref_arg`]: https://rust-lang.github.io/rust-clippy/master/index.html#toplevel_ref_arg
1365 [`transmute_bytes_to_str`]: https://rust-lang.github.io/rust-clippy/master/index.html#transmute_bytes_to_str
1366 [`transmute_float_to_int`]: https://rust-lang.github.io/rust-clippy/master/index.html#transmute_float_to_int
1367 [`transmute_int_to_bool`]: https://rust-lang.github.io/rust-clippy/master/index.html#transmute_int_to_bool
1368 [`transmute_int_to_char`]: https://rust-lang.github.io/rust-clippy/master/index.html#transmute_int_to_char
1369 [`transmute_int_to_float`]: https://rust-lang.github.io/rust-clippy/master/index.html#transmute_int_to_float
1370 [`transmute_ptr_to_ptr`]: https://rust-lang.github.io/rust-clippy/master/index.html#transmute_ptr_to_ptr
1371 [`transmute_ptr_to_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#transmute_ptr_to_ref
1372 [`transmuting_null`]: https://rust-lang.github.io/rust-clippy/master/index.html#transmuting_null
1373 [`trivial_regex`]: https://rust-lang.github.io/rust-clippy/master/index.html#trivial_regex
1374 [`trivially_copy_pass_by_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#trivially_copy_pass_by_ref
1375 [`try_err`]: https://rust-lang.github.io/rust-clippy/master/index.html#try_err
1376 [`type_complexity`]: https://rust-lang.github.io/rust-clippy/master/index.html#type_complexity
1377 [`type_repetition_in_bounds`]: https://rust-lang.github.io/rust-clippy/master/index.html#type_repetition_in_bounds
1378 [`unicode_not_nfc`]: https://rust-lang.github.io/rust-clippy/master/index.html#unicode_not_nfc
1379 [`unimplemented`]: https://rust-lang.github.io/rust-clippy/master/index.html#unimplemented
1380 [`uninit_assumed_init`]: https://rust-lang.github.io/rust-clippy/master/index.html#uninit_assumed_init
1381 [`unit_arg`]: https://rust-lang.github.io/rust-clippy/master/index.html#unit_arg
1382 [`unit_cmp`]: https://rust-lang.github.io/rust-clippy/master/index.html#unit_cmp
1383 [`unknown_clippy_lints`]: https://rust-lang.github.io/rust-clippy/master/index.html#unknown_clippy_lints
1384 [`unnecessary_cast`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
1385 [`unnecessary_filter_map`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_filter_map
1386 [`unnecessary_fold`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_fold
1387 [`unnecessary_mut_passed`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_mut_passed
1388 [`unnecessary_operation`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_operation
1389 [`unnecessary_unwrap`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_unwrap
1390 [`unneeded_field_pattern`]: https://rust-lang.github.io/rust-clippy/master/index.html#unneeded_field_pattern
1391 [`unneeded_wildcard_pattern`]: https://rust-lang.github.io/rust-clippy/master/index.html#unneeded_wildcard_pattern
1392 [`unreachable`]: https://rust-lang.github.io/rust-clippy/master/index.html#unreachable
1393 [`unreadable_literal`]: https://rust-lang.github.io/rust-clippy/master/index.html#unreadable_literal
1394 [`unsafe_removed_from_name`]: https://rust-lang.github.io/rust-clippy/master/index.html#unsafe_removed_from_name
1395 [`unsafe_vector_initialization`]: https://rust-lang.github.io/rust-clippy/master/index.html#unsafe_vector_initialization
1396 [`unseparated_literal_suffix`]: https://rust-lang.github.io/rust-clippy/master/index.html#unseparated_literal_suffix
1397 [`unsound_collection_transmute`]: https://rust-lang.github.io/rust-clippy/master/index.html#unsound_collection_transmute
1398 [`unstable_as_mut_slice`]: https://rust-lang.github.io/rust-clippy/master/index.html#unstable_as_mut_slice
1399 [`unstable_as_slice`]: https://rust-lang.github.io/rust-clippy/master/index.html#unstable_as_slice
1400 [`unused_collect`]: https://rust-lang.github.io/rust-clippy/master/index.html#unused_collect
1401 [`unused_io_amount`]: https://rust-lang.github.io/rust-clippy/master/index.html#unused_io_amount
1402 [`unused_label`]: https://rust-lang.github.io/rust-clippy/master/index.html#unused_label
1403 [`unused_self`]: https://rust-lang.github.io/rust-clippy/master/index.html#unused_self
1404 [`unused_unit`]: https://rust-lang.github.io/rust-clippy/master/index.html#unused_unit
1405 [`use_debug`]: https://rust-lang.github.io/rust-clippy/master/index.html#use_debug
1406 [`use_self`]: https://rust-lang.github.io/rust-clippy/master/index.html#use_self
1407 [`used_underscore_binding`]: https://rust-lang.github.io/rust-clippy/master/index.html#used_underscore_binding
1408 [`useless_asref`]: https://rust-lang.github.io/rust-clippy/master/index.html#useless_asref
1409 [`useless_attribute`]: https://rust-lang.github.io/rust-clippy/master/index.html#useless_attribute
1410 [`useless_format`]: https://rust-lang.github.io/rust-clippy/master/index.html#useless_format
1411 [`useless_let_if_seq`]: https://rust-lang.github.io/rust-clippy/master/index.html#useless_let_if_seq
1412 [`useless_transmute`]: https://rust-lang.github.io/rust-clippy/master/index.html#useless_transmute
1413 [`useless_vec`]: https://rust-lang.github.io/rust-clippy/master/index.html#useless_vec
1414 [`vec_box`]: https://rust-lang.github.io/rust-clippy/master/index.html#vec_box
1415 [`verbose_bit_mask`]: https://rust-lang.github.io/rust-clippy/master/index.html#verbose_bit_mask
1416 [`while_immutable_condition`]: https://rust-lang.github.io/rust-clippy/master/index.html#while_immutable_condition
1417 [`while_let_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#while_let_loop
1418 [`while_let_on_iterator`]: https://rust-lang.github.io/rust-clippy/master/index.html#while_let_on_iterator
1419 [`wildcard_dependencies`]: https://rust-lang.github.io/rust-clippy/master/index.html#wildcard_dependencies
1420 [`wildcard_enum_match_arm`]: https://rust-lang.github.io/rust-clippy/master/index.html#wildcard_enum_match_arm
1421 [`wildcard_in_or_patterns`]: https://rust-lang.github.io/rust-clippy/master/index.html#wildcard_in_or_patterns
1422 [`write_literal`]: https://rust-lang.github.io/rust-clippy/master/index.html#write_literal
1423 [`write_with_newline`]: https://rust-lang.github.io/rust-clippy/master/index.html#write_with_newline
1424 [`writeln_empty_string`]: https://rust-lang.github.io/rust-clippy/master/index.html#writeln_empty_string
1425 [`wrong_pub_self_convention`]: https://rust-lang.github.io/rust-clippy/master/index.html#wrong_pub_self_convention
1426 [`wrong_self_convention`]: https://rust-lang.github.io/rust-clippy/master/index.html#wrong_self_convention
1427 [`wrong_transmute`]: https://rust-lang.github.io/rust-clippy/master/index.html#wrong_transmute
1428 [`zero_divided_by_zero`]: https://rust-lang.github.io/rust-clippy/master/index.html#zero_divided_by_zero
1429 [`zero_prefixed_literal`]: https://rust-lang.github.io/rust-clippy/master/index.html#zero_prefixed_literal
1430 [`zero_ptr`]: https://rust-lang.github.io/rust-clippy/master/index.html#zero_ptr
1431 [`zero_width_space`]: https://rust-lang.github.io/rust-clippy/master/index.html#zero_width_space
1432 [`zst_offset`]: https://rust-lang.github.io/rust-clippy/master/index.html#zst_offset
1433 <!-- end autogenerated links to lint list -->