]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/CHANGELOG.md
Merge commit 'b20d4c155d2fe3a8391f86dcf9a8c49e17188703' into clippyup
[rust.git] / src / tools / clippy / CHANGELOG.md
1 # Changelog
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 Nightly
8
9 [e636b88...master](https://github.com/rust-lang/rust-clippy/compare/e636b88...master)
10
11 ## Rust 1.48
12
13 Current beta, release 2020-11-19
14
15 [09bd400...e636b88](https://github.com/rust-lang/rust-clippy/compare/09bd400...e636b88)
16
17 ### New lints
18
19 * [`self_assignment`] [#5894](https://github.com/rust-lang/rust-clippy/pull/5894)
20 * [`unnecessary_lazy_evaluations`] [#5720](https://github.com/rust-lang/rust-clippy/pull/5720)
21 * [`manual_strip`] [#6038](https://github.com/rust-lang/rust-clippy/pull/6038)
22 * [`map_err_ignore`] [#5998](https://github.com/rust-lang/rust-clippy/pull/5998)
23 * [`rc_buffer`] [#6044](https://github.com/rust-lang/rust-clippy/pull/6044)
24 * [`to_string_in_display`] [#5831](https://github.com/rust-lang/rust-clippy/pull/5831)
25 * `single_char_push_str` [#5881](https://github.com/rust-lang/rust-clippy/pull/5881)
26
27 ### Moves and Deprecations
28
29 * Downgrade [`verbose_bit_mask`] to pedantic
30   [#6036](https://github.com/rust-lang/rust-clippy/pull/6036)
31
32 ### Enhancements
33
34 * Extend [`precedence`] to handle chains of methods combined with unary negation
35   [#5928](https://github.com/rust-lang/rust-clippy/pull/5928)
36 * [`useless_vec`]: add a configuration value for the maximum allowed size on the stack
37   [#5907](https://github.com/rust-lang/rust-clippy/pull/5907)
38 * [`suspicious_arithmetic_impl`]: extend to implementations of `BitAnd`, `BitOr`, `BitXor`, `Rem`, `Shl`, and `Shr`
39   [#5884](https://github.com/rust-lang/rust-clippy/pull/5884)
40 * [`invalid_atomic_ordering`]: detect misuse of `compare_exchange`, `compare_exchange_weak`, and `fetch_update`
41   [#6025](https://github.com/rust-lang/rust-clippy/pull/6025)
42 * Avoid [`redundant_pattern_matching`] triggering in macros
43   [#6069](https://github.com/rust-lang/rust-clippy/pull/6069)
44 * [`option_if_let_else`]: distinguish pure from impure `else` expressions
45   [#5937](https://github.com/rust-lang/rust-clippy/pull/5937)
46 * [`needless_doctest_main`]: parse doctests instead of using textual search
47   [#5912](https://github.com/rust-lang/rust-clippy/pull/5912)
48 * [`wildcard_imports`]: allow `prelude` to appear in any segment of an import
49   [#5929](https://github.com/rust-lang/rust-clippy/pull/5929)
50 * Re-enable [`len_zero`] for ranges now that `range_is_empty` is stable
51   [#5961](https://github.com/rust-lang/rust-clippy/pull/5961)
52 * [`option_as_ref_deref`]: catch fully-qualified calls to `Deref::deref` and `DerefMut::deref_mut`
53   [#5933](https://github.com/rust-lang/rust-clippy/pull/5933)
54
55 ### False Positive Fixes
56
57 * [`useless_attribute`]: permit allowing [`wildcard_imports`] and [`enum_glob_use`]
58   [#5994](https://github.com/rust-lang/rust-clippy/pull/5994)
59 * [`transmute_ptr_to_ptr`]: avoid suggesting dereferencing raw pointers in const contexts 
60   [#5999](https://github.com/rust-lang/rust-clippy/pull/5999)
61 * [`redundant_closure_call`]: take into account usages of the closure in nested functions and closures
62   [#5920](https://github.com/rust-lang/rust-clippy/pull/5920)
63 * Fix false positive in [`borrow_interior_mutable_const`] when referencing a field behind a pointer
64   [#5949](https://github.com/rust-lang/rust-clippy/pull/5949)
65 * [`doc_markdown`]: allow using "GraphQL" without backticks
66   [#5996](https://github.com/rust-lang/rust-clippy/pull/5996)
67 * [`to_string_in_display`]: avoid linting when calling `to_string()` on anything that is not `self` 
68   [#5971](https://github.com/rust-lang/rust-clippy/pull/5971)
69 * [`indexing_slicing`] and [`out_of_bounds_indexing`] treat references to arrays as arrays
70   [#6034](https://github.com/rust-lang/rust-clippy/pull/6034)
71 * [`should_implement_trait`]: ignore methods with lifetime parameters
72   [#5725](https://github.com/rust-lang/rust-clippy/pull/5725)
73 * [`needless_return`]: avoid linting if a temporary borrows a local variable
74   [#5903](https://github.com/rust-lang/rust-clippy/pull/5903)
75 * Restrict [`unnecessary_sort_by`] to non-reference, Copy types
76   [#6006](https://github.com/rust-lang/rust-clippy/pull/6006)
77 * Avoid suggesting `from_bits`/`to_bits` in const contexts in [`transmute_int_to_float`]
78   [#5919](https://github.com/rust-lang/rust-clippy/pull/5919)
79 * [`declare_interior_mutable_const`] and [`borrow_interior_mutable_const`]: improve detection of interior mutable types
80   [#6046](https://github.com/rust-lang/rust-clippy/pull/6046)
81
82 ### Suggestion Fixes/Improvements
83
84 * [`let_and_return`]: add a cast to the suggestion when the return expression has adjustments
85   [#5946](https://github.com/rust-lang/rust-clippy/pull/5946)
86 * [`useless_conversion`]: show the type in the error message
87   [#6035](https://github.com/rust-lang/rust-clippy/pull/6035)
88 * [`unnecessary_mut_passed`]: discriminate between functions and methods in the error message 
89   [#5892](https://github.com/rust-lang/rust-clippy/pull/5892)
90 * [`float_cmp`] and [`float_cmp_const`]: change wording to make margin of error less ambiguous
91   [#6043](https://github.com/rust-lang/rust-clippy/pull/6043)
92 * [`default_trait_access`]: do not use unnecessary type parameters in the suggestion
93   [#5993](https://github.com/rust-lang/rust-clippy/pull/5993)
94 * [`collapsible_if`]: don't use expanded code in the suggestion 
95   [#5992](https://github.com/rust-lang/rust-clippy/pull/5992)
96 * Do not suggest empty format strings in [`print_with_newline`] and [`write_with_newline`]
97   [#6042](https://github.com/rust-lang/rust-clippy/pull/6042)
98 * [`unit_arg`]: improve the readability of the suggestion
99   [#5931](https://github.com/rust-lang/rust-clippy/pull/5931)
100 * [`stable_sort_primitive`]: print the type that is being sorted in the lint message 
101   [#5935](https://github.com/rust-lang/rust-clippy/pull/5935)
102 * Show line count and max lines in [`too_many_lines`] lint message
103   [#6009](https://github.com/rust-lang/rust-clippy/pull/6009)
104 * Keep parentheses in the suggestion of [`useless_conversion`] where applicable
105   [#5900](https://github.com/rust-lang/rust-clippy/pull/5900)
106 * [`option_map_unit_fn`] and [`result_map_unit_fn`]: print the unit type `()` explicitly
107   [#6024](https://github.com/rust-lang/rust-clippy/pull/6024)
108 * [`redundant_allocation`]: suggest replacing `Rc<Box<T>>` with `Rc<T>` 
109   [#5899](https://github.com/rust-lang/rust-clippy/pull/5899)
110 * Make lint messages adhere to rustc dev guide conventions
111   [#5893](https://github.com/rust-lang/rust-clippy/pull/5893)
112
113 ### ICE Fixes
114
115 * Fix ICE in [`repeat_once`]
116   [#5948](https://github.com/rust-lang/rust-clippy/pull/5948)
117
118 ### Documentation Improvements
119
120 * [`mutable_key_type`]: explain potential for false positives when the interior mutable type is not accessed in the `Hash` implementation
121   [#6019](https://github.com/rust-lang/rust-clippy/pull/6019)
122 * [`unnecessary_mut_passed`]: fix typo
123   [#5913](https://github.com/rust-lang/rust-clippy/pull/5913)
124 * Add example of false positive to [`ptr_arg`] docs.
125   [#5885](https://github.com/rust-lang/rust-clippy/pull/5885)
126 * [`box_vec`], [`vec_box`] and [`borrowed_box`]: add link to the documentation of `Box`
127   [#6023](https://github.com/rust-lang/rust-clippy/pull/6023)
128
129 ## Rust 1.47
130
131 Current stable, released 2020-10-08
132
133 [c2c07fa...09bd400](https://github.com/rust-lang/rust-clippy/compare/c2c07fa...09bd400)
134
135 ### New lints
136
137 * [`derive_ord_xor_partial_ord`] [#5848](https://github.com/rust-lang/rust-clippy/pull/5848)
138 * [`trait_duplication_in_bounds`] [#5852](https://github.com/rust-lang/rust-clippy/pull/5852)
139 * [`map_identity`] [#5694](https://github.com/rust-lang/rust-clippy/pull/5694)
140 * [`unit_return_expecting_ord`] [#5737](https://github.com/rust-lang/rust-clippy/pull/5737)
141 * [`pattern_type_mismatch`] [#4841](https://github.com/rust-lang/rust-clippy/pull/4841)
142 * [`repeat_once`] [#5773](https://github.com/rust-lang/rust-clippy/pull/5773)
143 * [`same_item_push`] [#5825](https://github.com/rust-lang/rust-clippy/pull/5825)
144 * [`needless_arbitrary_self_type`] [#5869](https://github.com/rust-lang/rust-clippy/pull/5869)
145 * [`match_like_matches_macro`] [#5769](https://github.com/rust-lang/rust-clippy/pull/5769)
146 * [`stable_sort_primitive`] [#5809](https://github.com/rust-lang/rust-clippy/pull/5809)
147 * [`blanket_clippy_restriction_lints`] [#5750](https://github.com/rust-lang/rust-clippy/pull/5750)
148 * [`option_if_let_else`] [#5301](https://github.com/rust-lang/rust-clippy/pull/5301)
149
150 ### Moves and Deprecations
151
152 * Deprecate [`regex_macro`] lint
153   [#5760](https://github.com/rust-lang/rust-clippy/pull/5760)
154 * Move [`range_minus_one`] to `pedantic`
155   [#5752](https://github.com/rust-lang/rust-clippy/pull/5752)
156
157 ### Enhancements
158
159 * Improve [`needless_collect`] by catching `collect` calls followed by `iter` or `into_iter` calls
160   [#5837](https://github.com/rust-lang/rust-clippy/pull/5837)
161 * [`panic`], [`todo`], [`unimplemented`] and [`unreachable`] now detect calls with formatting
162   [#5811](https://github.com/rust-lang/rust-clippy/pull/5811)
163 * Detect more cases of [`suboptimal_flops`] and [`imprecise_flops`]
164   [#5443](https://github.com/rust-lang/rust-clippy/pull/5443)
165 * Handle asymmetrical implementations of `PartialEq` in [`cmp_owned`]
166   [#5701](https://github.com/rust-lang/rust-clippy/pull/5701)
167 * Make it possible to allow [`unsafe_derive_deserialize`]
168   [#5870](https://github.com/rust-lang/rust-clippy/pull/5870)
169 * Catch `ord.min(a).max(b)` where a < b in [`min_max`]
170   [#5871](https://github.com/rust-lang/rust-clippy/pull/5871)
171 * Make [`clone_on_copy`] suggestion machine applicable
172   [#5745](https://github.com/rust-lang/rust-clippy/pull/5745)
173 * Enable [`len_zero`] on ranges now that `is_empty` is stable on them
174   [#5961](https://github.com/rust-lang/rust-clippy/pull/5961)
175
176 ### False Positive Fixes
177
178 * Avoid triggering [`or_fun_call`] with const fns that take no arguments
179   [#5889](https://github.com/rust-lang/rust-clippy/pull/5889)
180 * Fix [`redundant_closure_call`] false positive for closures that have multiple calls
181   [#5800](https://github.com/rust-lang/rust-clippy/pull/5800)
182 * Don't lint cases involving `ManuallyDrop` in [`redundant_clone`]
183   [#5824](https://github.com/rust-lang/rust-clippy/pull/5824)
184 * Treat a single expression the same as a single statement in the 2nd arm of a match in [`single_match_else`]
185   [#5771](https://github.com/rust-lang/rust-clippy/pull/5771)
186 * Don't trigger [`unnested_or_patterns`] if the feature `or_patterns` is not enabled
187   [#5758](https://github.com/rust-lang/rust-clippy/pull/5758)
188 * Avoid linting if key borrows in [`unnecessary_sort_by`]
189   [#5756](https://github.com/rust-lang/rust-clippy/pull/5756)
190 * Consider `Try` impl for `Poll` when generating suggestions in [`try_err`]
191   [#5857](https://github.com/rust-lang/rust-clippy/pull/5857)
192 * Take input lifetimes into account in `manual_async_fn`
193   [#5859](https://github.com/rust-lang/rust-clippy/pull/5859)
194 * Fix multiple false positives in [`type_repetition_in_bounds`] and add a configuration option
195   [#5761](https://github.com/rust-lang/rust-clippy/pull/5761)
196 * Limit the [`suspicious_arithmetic_impl`] lint to one binary operation
197   [#5820](https://github.com/rust-lang/rust-clippy/pull/5820)
198
199 ### Suggestion Fixes/Improvements
200
201 * Improve readability of [`shadow_unrelated`] suggestion by truncating the RHS snippet
202   [#5788](https://github.com/rust-lang/rust-clippy/pull/5788)
203 * Suggest `filter_map` instead of `flat_map` when mapping to `Option` in [`map_flatten`]
204   [#5846](https://github.com/rust-lang/rust-clippy/pull/5846)
205 * Ensure suggestion is shown correctly for long method call chains in [`iter_nth_zero`]
206   [#5793](https://github.com/rust-lang/rust-clippy/pull/5793)
207 * Drop borrow operator in suggestions of [`redundant_pattern_matching`]
208   [#5815](https://github.com/rust-lang/rust-clippy/pull/5815)
209 * Add suggestion for [`iter_skip_next`]
210   [#5843](https://github.com/rust-lang/rust-clippy/pull/5843)
211 * Improve [`collapsible_if`] fix suggestion
212   [#5732](https://github.com/rust-lang/rust-clippy/pull/5732)
213
214 ### ICE Fixes
215
216 * Fix ICE caused by [`needless_collect`]
217   [#5877](https://github.com/rust-lang/rust-clippy/pull/5877)
218 * Fix ICE caused by [`unnested_or_patterns`]
219   [#5784](https://github.com/rust-lang/rust-clippy/pull/5784)
220
221 ### Documentation Improvements
222
223 * Fix grammar of [`await_holding_lock`] documentation
224   [#5748](https://github.com/rust-lang/rust-clippy/pull/5748)
225
226 ### Others
227
228 * Make lints adhere to the rustc dev guide
229   [#5888](https://github.com/rust-lang/rust-clippy/pull/5888)
230
231 ## Rust 1.46
232
233 Released 2020-08-27
234
235 [7ea7cd1...c2c07fa](https://github.com/rust-lang/rust-clippy/compare/7ea7cd1...c2c07fa)
236
237 ### New lints
238
239 * [`unnested_or_patterns`] [#5378](https://github.com/rust-lang/rust-clippy/pull/5378)
240 * [`iter_next_slice`] [#5597](https://github.com/rust-lang/rust-clippy/pull/5597)
241 * [`unnecessary_sort_by`] [#5623](https://github.com/rust-lang/rust-clippy/pull/5623)
242 * [`vec_resize_to_zero`] [#5637](https://github.com/rust-lang/rust-clippy/pull/5637)
243
244 ### Moves and Deprecations
245
246 * Move [`cast_ptr_alignment`] to pedantic [#5667](https://github.com/rust-lang/rust-clippy/pull/5667)
247
248 ### Enhancements
249
250 * Improve [`mem_replace_with_uninit`] lint [#5695](https://github.com/rust-lang/rust-clippy/pull/5695)
251
252 ### False Positive Fixes
253
254 * [`len_zero`]: Avoid linting ranges when the `range_is_empty` feature is not enabled
255   [#5656](https://github.com/rust-lang/rust-clippy/pull/5656)
256 * [`let_and_return`]: Don't lint if a temporary borrow is involved
257   [#5680](https://github.com/rust-lang/rust-clippy/pull/5680)
258 * [`reversed_empty_ranges`]: Avoid linting `N..N` in for loop arguments in
259   [#5692](https://github.com/rust-lang/rust-clippy/pull/5692)
260 * [`if_same_then_else`]: Don't assume multiplication is always commutative
261   [#5702](https://github.com/rust-lang/rust-clippy/pull/5702)
262 * [`blacklisted_name`]: Remove `bar` from the default configuration
263   [#5712](https://github.com/rust-lang/rust-clippy/pull/5712)
264 * [`redundant_pattern_matching`]: Avoid suggesting non-`const fn` calls in const contexts
265   [#5724](https://github.com/rust-lang/rust-clippy/pull/5724)
266
267 ### Suggestion Fixes/Improvements
268
269 * Fix suggestion of [`unit_arg`] lint, so that it suggest semantic equivalent code
270   [#4455](https://github.com/rust-lang/rust-clippy/pull/4455)
271 * Add auto applicable suggestion to [`macro_use_imports`]
272   [#5279](https://github.com/rust-lang/rust-clippy/pull/5279)
273
274 ### ICE Fixes
275
276 * Fix ICE in the `consts` module of Clippy [#5709](https://github.com/rust-lang/rust-clippy/pull/5709)
277
278 ### Documentation Improvements
279
280 * Improve code examples across multiple lints [#5664](https://github.com/rust-lang/rust-clippy/pull/5664)
281
282 ### Others
283
284 * Introduce a `--rustc` flag to `clippy-driver`, which turns `clippy-driver`
285   into `rustc` and passes all the given arguments to `rustc`. This is especially
286   useful for tools that need the `rustc` version Clippy was compiled with,
287   instead of the Clippy version. E.g. `clippy-driver --rustc --version` will
288   print the output of `rustc --version`.
289   [#5178](https://github.com/rust-lang/rust-clippy/pull/5178)
290 * New issue templates now make it easier to complain if Clippy is too annoying
291   or not annoying enough! [#5735](https://github.com/rust-lang/rust-clippy/pull/5735)
292
293 ## Rust 1.45
294
295 Released 2020-07-16
296
297 [891e1a8...7ea7cd1](https://github.com/rust-lang/rust-clippy/compare/891e1a8...7ea7cd1)
298
299 ### New lints
300
301 * [`match_wildcard_for_single_variants`] [#5582](https://github.com/rust-lang/rust-clippy/pull/5582)
302 * [`unsafe_derive_deserialize`] [#5493](https://github.com/rust-lang/rust-clippy/pull/5493)
303 * [`if_let_mutex`] [#5332](https://github.com/rust-lang/rust-clippy/pull/5332)
304 * [`mismatched_target_os`] [#5506](https://github.com/rust-lang/rust-clippy/pull/5506)
305 * [`await_holding_lock`] [#5439](https://github.com/rust-lang/rust-clippy/pull/5439)
306 * [`match_on_vec_items`] [#5522](https://github.com/rust-lang/rust-clippy/pull/5522)
307 * [`manual_async_fn`] [#5576](https://github.com/rust-lang/rust-clippy/pull/5576)
308 * [`reversed_empty_ranges`] [#5583](https://github.com/rust-lang/rust-clippy/pull/5583)
309 * [`manual_non_exhaustive`] [#5550](https://github.com/rust-lang/rust-clippy/pull/5550)
310
311 ### Moves and Deprecations
312
313 * Downgrade [`match_bool`] to pedantic [#5408](https://github.com/rust-lang/rust-clippy/pull/5408)
314 * Downgrade [`match_wild_err_arm`] to pedantic and update help messages. [#5622](https://github.com/rust-lang/rust-clippy/pull/5622)
315 * Downgrade [`useless_let_if_seq`] to nursery. [#5599](https://github.com/rust-lang/rust-clippy/pull/5599)
316 * Generalize `option_and_then_some` and rename to [`bind_instead_of_map`]. [#5529](https://github.com/rust-lang/rust-clippy/pull/5529)
317 * Rename `identity_conversion` to [`useless_conversion`]. [#5568](https://github.com/rust-lang/rust-clippy/pull/5568)
318 * Merge `block_in_if_condition_expr` and `block_in_if_condition_stmt` into [`blocks_in_if_conditions`].
319 [#5563](https://github.com/rust-lang/rust-clippy/pull/5563)
320 * Merge `option_map_unwrap_or`, `option_map_unwrap_or_else` and `result_map_unwrap_or_else` into [`map_unwrap_or`].
321 [#5563](https://github.com/rust-lang/rust-clippy/pull/5563)
322 * Merge `option_unwrap_used` and `result_unwrap_used` into [`unwrap_used`].
323 [#5563](https://github.com/rust-lang/rust-clippy/pull/5563)
324 * Merge `option_expect_used` and `result_expect_used` into [`expect_used`].
325 [#5563](https://github.com/rust-lang/rust-clippy/pull/5563)
326 * Merge `for_loop_over_option` and `for_loop_over_result` into [`for_loops_over_fallibles`].
327 [#5563](https://github.com/rust-lang/rust-clippy/pull/5563)
328
329 ### Enhancements
330
331 * Avoid running cargo lints when not enabled to improve performance. [#5505](https://github.com/rust-lang/rust-clippy/pull/5505)
332 * Extend [`useless_conversion`] with `TryFrom` and `TryInto`. [#5631](https://github.com/rust-lang/rust-clippy/pull/5631)
333 * Lint also in type parameters and where clauses in [`unused_unit`]. [#5592](https://github.com/rust-lang/rust-clippy/pull/5592)
334 * Do not suggest deriving `Default` in [`new_without_default`]. [#5616](https://github.com/rust-lang/rust-clippy/pull/5616)
335
336 ### False Positive Fixes
337
338 * [`while_let_on_iterator`] [#5525](https://github.com/rust-lang/rust-clippy/pull/5525)
339 * [`empty_line_after_outer_attr`] [#5609](https://github.com/rust-lang/rust-clippy/pull/5609)
340 * [`unnecessary_unwrap`] [#5558](https://github.com/rust-lang/rust-clippy/pull/5558)
341 * [`comparison_chain`] [#5596](https://github.com/rust-lang/rust-clippy/pull/5596)
342 * Don't trigger [`used_underscore_binding`] in await desugaring. [#5535](https://github.com/rust-lang/rust-clippy/pull/5535)
343 * Don't trigger [`borrowed_box`] on mutable references. [#5491](https://github.com/rust-lang/rust-clippy/pull/5491)
344 * Allow `1 << 0` in [`identity_op`]. [#5602](https://github.com/rust-lang/rust-clippy/pull/5602)
345 * Allow `use super::*;` glob imports in [`wildcard_imports`]. [#5564](https://github.com/rust-lang/rust-clippy/pull/5564)
346 * Whitelist more words in [`doc_markdown`]. [#5611](https://github.com/rust-lang/rust-clippy/pull/5611)
347 * Skip dev and build deps in [`multiple_crate_versions`]. [#5636](https://github.com/rust-lang/rust-clippy/pull/5636)
348 * Honor `allow` attribute on arguments in [`ptr_arg`]. [#5647](https://github.com/rust-lang/rust-clippy/pull/5647)
349 * Honor lint level attributes for [`redundant_field_names`], [`just_underscores_and_digits`], [`many_single_char_names`]
350 and [`similar_names`]. [#5651](https://github.com/rust-lang/rust-clippy/pull/5651)
351 * Ignore calls to `len` in [`or_fun_call`]. [#4429](https://github.com/rust-lang/rust-clippy/pull/4429)
352
353 ### Suggestion Improvements
354
355 * Simplify suggestions in [`manual_memcpy`]. [#5536](https://github.com/rust-lang/rust-clippy/pull/5536)
356 * Fix suggestion in [`redundant_pattern_matching`] for macros. [#5511](https://github.com/rust-lang/rust-clippy/pull/5511)
357 * Avoid suggesting `copied()` for mutable references in [`map_clone`]. [#5530](https://github.com/rust-lang/rust-clippy/pull/5530)
358 * Improve help message for [`clone_double_ref`]. [#5547](https://github.com/rust-lang/rust-clippy/pull/5547)
359
360 ### ICE Fixes
361
362 * Fix ICE caused in unwrap module. [#5590](https://github.com/rust-lang/rust-clippy/pull/5590)
363 * Fix ICE on rustc test issue-69020-assoc-const-arith-overflow.rs [#5499](https://github.com/rust-lang/rust-clippy/pull/5499)
364
365 ### Documentation
366
367 * Clarify the documentation of [`unnecessary_mut_passed`]. [#5639](https://github.com/rust-lang/rust-clippy/pull/5639)
368 * Extend example for [`unneeded_field_pattern`]. [#5541](https://github.com/rust-lang/rust-clippy/pull/5541)
369
370 ## Rust 1.44
371
372 Released 2020-06-04
373
374 [204bb9b...891e1a8](https://github.com/rust-lang/rust-clippy/compare/204bb9b...891e1a8)
375
376 ### New lints
377
378 * [`explicit_deref_methods`] [#5226](https://github.com/rust-lang/rust-clippy/pull/5226)
379 * [`implicit_saturating_sub`] [#5427](https://github.com/rust-lang/rust-clippy/pull/5427)
380 * [`macro_use_imports`] [#5230](https://github.com/rust-lang/rust-clippy/pull/5230)
381 * [`verbose_file_reads`] [#5272](https://github.com/rust-lang/rust-clippy/pull/5272)
382 * [`future_not_send`] [#5423](https://github.com/rust-lang/rust-clippy/pull/5423)
383 * [`redundant_pub_crate`] [#5319](https://github.com/rust-lang/rust-clippy/pull/5319)
384 * [`large_const_arrays`] [#5248](https://github.com/rust-lang/rust-clippy/pull/5248)
385 * [`result_map_or_into_option`] [#5415](https://github.com/rust-lang/rust-clippy/pull/5415)
386 * [`redundant_allocation`] [#5349](https://github.com/rust-lang/rust-clippy/pull/5349)
387 * [`fn_address_comparisons`] [#5294](https://github.com/rust-lang/rust-clippy/pull/5294)
388 * [`vtable_address_comparisons`] [#5294](https://github.com/rust-lang/rust-clippy/pull/5294)
389
390
391 ### Moves and Deprecations
392
393 * Deprecate [`replace_consts`] lint [#5380](https://github.com/rust-lang/rust-clippy/pull/5380)
394 * Move [`cognitive_complexity`] to nursery [#5428](https://github.com/rust-lang/rust-clippy/pull/5428)
395 * Move [`useless_transmute`] to nursery [#5364](https://github.com/rust-lang/rust-clippy/pull/5364)
396 * Downgrade [`inefficient_to_string`] to pedantic [#5412](https://github.com/rust-lang/rust-clippy/pull/5412)
397 * Downgrade [`option_option`] to pedantic [#5401](https://github.com/rust-lang/rust-clippy/pull/5401)
398 * Downgrade [`unreadable_literal`] to pedantic [#5419](https://github.com/rust-lang/rust-clippy/pull/5419)
399 * Downgrade [`let_unit_value`] to pedantic [#5409](https://github.com/rust-lang/rust-clippy/pull/5409)
400 * Downgrade [`trivially_copy_pass_by_ref`] to pedantic [#5410](https://github.com/rust-lang/rust-clippy/pull/5410)
401 * Downgrade [`implicit_hasher`] to pedantic [#5411](https://github.com/rust-lang/rust-clippy/pull/5411)
402
403 ### Enhancements
404
405 * On _nightly_ you can now use `cargo clippy --fix -Z unstable-options` to
406   auto-fix lints that support this [#5363](https://github.com/rust-lang/rust-clippy/pull/5363)
407 * Make [`redundant_clone`] also trigger on cases where the cloned value is not
408   consumed. [#5304](https://github.com/rust-lang/rust-clippy/pull/5304)
409 * Expand [`integer_arithmetic`] to also disallow bit-shifting [#5430](https://github.com/rust-lang/rust-clippy/pull/5430)
410 * [`option_as_ref_deref`] now detects more deref cases [#5425](https://github.com/rust-lang/rust-clippy/pull/5425)
411 * [`large_enum_variant`] now report the sizes of the largest and second-largest variants [#5466](https://github.com/rust-lang/rust-clippy/pull/5466)
412 * [`bool_comparison`] now also checks for inequality comparisons that can be
413   written more concisely [#5365](https://github.com/rust-lang/rust-clippy/pull/5365)
414 * Expand [`clone_on_copy`] to work in method call arguments as well [#5441](https://github.com/rust-lang/rust-clippy/pull/5441)
415 * [`redundant_pattern_matching`] now also handles `while let` [#5483](https://github.com/rust-lang/rust-clippy/pull/5483)
416 * [`integer_arithmetic`] now also lints references of integers [#5329](https://github.com/rust-lang/rust-clippy/pull/5329)
417 * Expand [`float_cmp_const`] to also work on arrays [#5345](https://github.com/rust-lang/rust-clippy/pull/5345)
418 * Trigger [`map_flatten`] when map is called on an `Option` [#5473](https://github.com/rust-lang/rust-clippy/pull/5473)
419
420 ### False Positive Fixes
421
422 * [`many_single_char_names`] [#5468](https://github.com/rust-lang/rust-clippy/pull/5468)
423 * [`should_implement_trait`] [#5437](https://github.com/rust-lang/rust-clippy/pull/5437)
424 * [`unused_self`] [#5387](https://github.com/rust-lang/rust-clippy/pull/5387)
425 * [`redundant_clone`] [#5453](https://github.com/rust-lang/rust-clippy/pull/5453)
426 * [`precedence`] [#5445](https://github.com/rust-lang/rust-clippy/pull/5445)
427 * [`suspicious_op_assign_impl`] [#5424](https://github.com/rust-lang/rust-clippy/pull/5424)
428 * [`needless_lifetimes`] [#5293](https://github.com/rust-lang/rust-clippy/pull/5293)
429 * [`redundant_pattern`] [#5287](https://github.com/rust-lang/rust-clippy/pull/5287)
430 * [`inconsistent_digit_grouping`] [#5451](https://github.com/rust-lang/rust-clippy/pull/5451)
431
432
433 ### Suggestion Improvements
434
435 * Improved [`question_mark`] lint suggestion so that it doesn't add redundant `as_ref()` [#5481](https://github.com/rust-lang/rust-clippy/pull/5481)
436 * Improve the suggested placeholder in [`option_map_unit_fn`] [#5292](https://github.com/rust-lang/rust-clippy/pull/5292)
437 * Improve suggestion for [`match_single_binding`] when triggered inside a closure [#5350](https://github.com/rust-lang/rust-clippy/pull/5350)
438
439 ### ICE Fixes
440
441 * Handle the unstable `trivial_bounds` feature [#5296](https://github.com/rust-lang/rust-clippy/pull/5296)
442 * `shadow_*` lints [#5297](https://github.com/rust-lang/rust-clippy/pull/5297)
443
444 ### Documentation
445
446 * Fix documentation generation for configurable lints [#5353](https://github.com/rust-lang/rust-clippy/pull/5353)
447 * Update documentation for [`new_ret_no_self`] [#5448](https://github.com/rust-lang/rust-clippy/pull/5448)
448 * The documentation for [`option_option`] now suggest using a tri-state enum [#5403](https://github.com/rust-lang/rust-clippy/pull/5403)
449 * Fix bit mask example in [`verbose_bit_mask`] documentation [#5454](https://github.com/rust-lang/rust-clippy/pull/5454)
450 * [`wildcard_imports`] documentation now mentions that `use ...::prelude::*` is
451   not linted [#5312](https://github.com/rust-lang/rust-clippy/pull/5312)
452
453 ## Rust 1.43
454
455 Released 2020-04-23
456
457 [4ee1206...204bb9b](https://github.com/rust-lang/rust-clippy/compare/4ee1206...204bb9b)
458
459 ### New lints
460
461 * [`imprecise_flops`] [#4897](https://github.com/rust-lang/rust-clippy/pull/4897)
462 * [`suboptimal_flops`] [#4897](https://github.com/rust-lang/rust-clippy/pull/4897)
463 * [`wildcard_imports`] [#5029](https://github.com/rust-lang/rust-clippy/pull/5029)
464 * [`single_component_path_imports`] [#5058](https://github.com/rust-lang/rust-clippy/pull/5058)
465 * [`match_single_binding`] [#5061](https://github.com/rust-lang/rust-clippy/pull/5061)
466 * [`let_underscore_lock`] [#5101](https://github.com/rust-lang/rust-clippy/pull/5101)
467 * [`struct_excessive_bools`] [#5125](https://github.com/rust-lang/rust-clippy/pull/5125)
468 * [`fn_params_excessive_bools`] [#5125](https://github.com/rust-lang/rust-clippy/pull/5125)
469 * [`option_env_unwrap`] [#5148](https://github.com/rust-lang/rust-clippy/pull/5148)
470 * [`lossy_float_literal`] [#5202](https://github.com/rust-lang/rust-clippy/pull/5202)
471 * [`rest_pat_in_fully_bound_structs`] [#5258](https://github.com/rust-lang/rust-clippy/pull/5258)
472
473 ### Moves and Deprecations
474
475 * Move [`unneeded_field_pattern`] to pedantic group [#5200](https://github.com/rust-lang/rust-clippy/pull/5200)
476
477 ### Enhancements
478
479 * Make [`missing_errors_doc`] lint also trigger on `async` functions
480   [#5181](https://github.com/rust-lang/rust-clippy/pull/5181)
481 * Add more constants to [`approx_constant`] [#5193](https://github.com/rust-lang/rust-clippy/pull/5193)
482 * Extend [`question_mark`] lint [#5266](https://github.com/rust-lang/rust-clippy/pull/5266)
483
484 ### False Positive Fixes
485
486 * [`use_debug`] [#5047](https://github.com/rust-lang/rust-clippy/pull/5047)
487 * [`unnecessary_unwrap`] [#5132](https://github.com/rust-lang/rust-clippy/pull/5132)
488 * [`zero_prefixed_literal`] [#5170](https://github.com/rust-lang/rust-clippy/pull/5170)
489 * [`missing_const_for_fn`] [#5216](https://github.com/rust-lang/rust-clippy/pull/5216)
490
491 ### Suggestion Improvements
492
493 * Improve suggestion when blocks of code are suggested [#5134](https://github.com/rust-lang/rust-clippy/pull/5134)
494
495 ### ICE Fixes
496
497 * `misc_early` lints [#5129](https://github.com/rust-lang/rust-clippy/pull/5129)
498 * [`missing_errors_doc`] [#5213](https://github.com/rust-lang/rust-clippy/pull/5213)
499 * Fix ICE when evaluating `usize`s [#5256](https://github.com/rust-lang/rust-clippy/pull/5256)
500
501 ### Documentation
502
503 * Improve documentation of [`iter_nth_zero`]
504 * Add documentation pages for stable releases [#5171](https://github.com/rust-lang/rust-clippy/pull/5171)
505
506 ### Others
507
508 * Clippy now completely runs on GitHub Actions [#5190](https://github.com/rust-lang/rust-clippy/pull/5190)
509
510
511 ## Rust 1.42
512
513 Released 2020-03-12
514
515 [69f99e7...4ee1206](https://github.com/rust-lang/rust-clippy/compare/69f99e7...4ee1206)
516
517 ### New lints
518
519 * [`filetype_is_file`] [#4543](https://github.com/rust-lang/rust-clippy/pull/4543)
520 * [`let_underscore_must_use`] [#4823](https://github.com/rust-lang/rust-clippy/pull/4823)
521 * [`modulo_arithmetic`] [#4867](https://github.com/rust-lang/rust-clippy/pull/4867)
522 * [`mem_replace_with_default`] [#4881](https://github.com/rust-lang/rust-clippy/pull/4881)
523 * [`mutable_key_type`] [#4885](https://github.com/rust-lang/rust-clippy/pull/4885)
524 * [`option_as_ref_deref`] [#4945](https://github.com/rust-lang/rust-clippy/pull/4945)
525 * [`wildcard_in_or_patterns`] [#4960](https://github.com/rust-lang/rust-clippy/pull/4960)
526 * [`iter_nth_zero`] [#4966](https://github.com/rust-lang/rust-clippy/pull/4966)
527 * [`invalid_atomic_ordering`] [#4999](https://github.com/rust-lang/rust-clippy/pull/4999)
528 * [`skip_while_next`] [#5067](https://github.com/rust-lang/rust-clippy/pull/5067)
529
530 ### Moves and Deprecations
531
532 * Move [`transmute_float_to_int`] from nursery to complexity group
533   [#5015](https://github.com/rust-lang/rust-clippy/pull/5015)
534 * Move [`range_plus_one`] to pedantic group [#5057](https://github.com/rust-lang/rust-clippy/pull/5057)
535 * Move [`debug_assert_with_mut_call`] to nursery group [#5106](https://github.com/rust-lang/rust-clippy/pull/5106)
536 * Deprecate [`unused_label`] [#4930](https://github.com/rust-lang/rust-clippy/pull/4930)
537
538 ### Enhancements
539
540 * Lint vectored IO in [`unused_io_amount`] [#5027](https://github.com/rust-lang/rust-clippy/pull/5027)
541 * Make [`vec_box`] configurable by adding a size threshold [#5081](https://github.com/rust-lang/rust-clippy/pull/5081)
542 * Also lint constants in [`cmp_nan`] [#4910](https://github.com/rust-lang/rust-clippy/pull/4910)
543 * Fix false negative in [`expect_fun_call`] [#4915](https://github.com/rust-lang/rust-clippy/pull/4915)
544 * Fix false negative in [`redundant_clone`] [#5017](https://github.com/rust-lang/rust-clippy/pull/5017)
545
546 ### False Positive Fixes
547
548 * [`map_clone`] [#4937](https://github.com/rust-lang/rust-clippy/pull/4937)
549 * [`replace_consts`] [#4977](https://github.com/rust-lang/rust-clippy/pull/4977)
550 * [`let_and_return`] [#5008](https://github.com/rust-lang/rust-clippy/pull/5008)
551 * [`eq_op`] [#5079](https://github.com/rust-lang/rust-clippy/pull/5079)
552 * [`possible_missing_comma`] [#5083](https://github.com/rust-lang/rust-clippy/pull/5083)
553 * [`debug_assert_with_mut_call`] [#5106](https://github.com/rust-lang/rust-clippy/pull/5106)
554 * Don't trigger [`let_underscore_must_use`] in external macros
555   [#5082](https://github.com/rust-lang/rust-clippy/pull/5082)
556 * Don't trigger [`empty_loop`] in `no_std` crates [#5086](https://github.com/rust-lang/rust-clippy/pull/5086)
557
558 ### Suggestion Improvements
559
560 * `option_map_unwrap_or` [#4634](https://github.com/rust-lang/rust-clippy/pull/4634)
561 * [`wildcard_enum_match_arm`] [#4934](https://github.com/rust-lang/rust-clippy/pull/4934)
562 * [`cognitive_complexity`] [#4935](https://github.com/rust-lang/rust-clippy/pull/4935)
563 * [`decimal_literal_representation`] [#4956](https://github.com/rust-lang/rust-clippy/pull/4956)
564 * [`unknown_clippy_lints`] [#4963](https://github.com/rust-lang/rust-clippy/pull/4963)
565 * [`explicit_into_iter_loop`] [#4978](https://github.com/rust-lang/rust-clippy/pull/4978)
566 * [`useless_attribute`] [#5022](https://github.com/rust-lang/rust-clippy/pull/5022)
567 * [`if_let_some_result`] [#5032](https://github.com/rust-lang/rust-clippy/pull/5032)
568
569 ### ICE fixes
570
571 * [`unsound_collection_transmute`] [#4975](https://github.com/rust-lang/rust-clippy/pull/4975)
572
573 ### Documentation
574
575 * Improve documentation of [`empty_enum`], [`replace_consts`], [`redundant_clone`], and [`iterator_step_by_zero`]
576
577
578 ## Rust 1.41
579
580 Released 2020-01-30
581
582 [c8e3cfb...69f99e7](https://github.com/rust-lang/rust-clippy/compare/c8e3cfb...69f99e7)
583
584 * New Lints:
585   * [`exit`] [#4697](https://github.com/rust-lang/rust-clippy/pull/4697)
586   * [`to_digit_is_some`] [#4801](https://github.com/rust-lang/rust-clippy/pull/4801)
587   * [`tabs_in_doc_comments`] [#4806](https://github.com/rust-lang/rust-clippy/pull/4806)
588   * [`large_stack_arrays`] [#4807](https://github.com/rust-lang/rust-clippy/pull/4807)
589   * [`same_functions_in_if_condition`] [#4814](https://github.com/rust-lang/rust-clippy/pull/4814)
590   * [`zst_offset`] [#4816](https://github.com/rust-lang/rust-clippy/pull/4816)
591   * [`as_conversions`] [#4821](https://github.com/rust-lang/rust-clippy/pull/4821)
592   * [`missing_errors_doc`] [#4884](https://github.com/rust-lang/rust-clippy/pull/4884)
593   * [`transmute_float_to_int`] [#4889](https://github.com/rust-lang/rust-clippy/pull/4889)
594 * Remove plugin interface, see
595   [Inside Rust Blog](https://blog.rust-lang.org/inside-rust/2019/11/04/Clippy-removes-plugin-interface.html) for
596   details [#4714](https://github.com/rust-lang/rust-clippy/pull/4714)
597 * Move [`use_self`] to nursery group [#4863](https://github.com/rust-lang/rust-clippy/pull/4863)
598 * Deprecate [`into_iter_on_array`] [#4788](https://github.com/rust-lang/rust-clippy/pull/4788)
599 * Expand [`string_lit_as_bytes`] to also trigger when literal has escapes
600   [#4808](https://github.com/rust-lang/rust-clippy/pull/4808)
601 * Fix false positive in `comparison_chain` [#4842](https://github.com/rust-lang/rust-clippy/pull/4842)
602 * Fix false positive in `while_immutable_condition` [#4730](https://github.com/rust-lang/rust-clippy/pull/4730)
603 * Fix false positive in `explicit_counter_loop` [#4803](https://github.com/rust-lang/rust-clippy/pull/4803)
604 * Fix false positive in `must_use_candidate` [#4794](https://github.com/rust-lang/rust-clippy/pull/4794)
605 * Fix false positive in `print_with_newline` and `write_with_newline`
606   [#4769](https://github.com/rust-lang/rust-clippy/pull/4769)
607 * Fix false positive in `derive_hash_xor_eq` [#4766](https://github.com/rust-lang/rust-clippy/pull/4766)
608 * Fix false positive in `missing_inline_in_public_items` [#4870](https://github.com/rust-lang/rust-clippy/pull/4870)
609 * Fix false positive in `string_add` [#4880](https://github.com/rust-lang/rust-clippy/pull/4880)
610 * Fix false positive in `float_arithmetic` [#4851](https://github.com/rust-lang/rust-clippy/pull/4851)
611 * Fix false positive in `cast_sign_loss` [#4883](https://github.com/rust-lang/rust-clippy/pull/4883)
612 * Fix false positive in `manual_swap` [#4877](https://github.com/rust-lang/rust-clippy/pull/4877)
613 * Fix ICEs occurring while checking some block expressions [#4772](https://github.com/rust-lang/rust-clippy/pull/4772)
614 * Fix ICE in `use_self` [#4776](https://github.com/rust-lang/rust-clippy/pull/4776)
615 * Fix ICEs related to `const_generics` [#4780](https://github.com/rust-lang/rust-clippy/pull/4780)
616 * Display help when running `clippy-driver` without arguments, instead of ICEing
617   [#4810](https://github.com/rust-lang/rust-clippy/pull/4810)
618 * Clippy has its own ICE message now [#4588](https://github.com/rust-lang/rust-clippy/pull/4588)
619 * Show deprecated lints in the documentation again [#4757](https://github.com/rust-lang/rust-clippy/pull/4757)
620 * Improve Documentation by adding positive examples to some lints
621   [#4832](https://github.com/rust-lang/rust-clippy/pull/4832)
622
623 ## Rust 1.40
624
625 Released 2019-12-19
626
627 [4e7e71b...c8e3cfb](https://github.com/rust-lang/rust-clippy/compare/4e7e71b...c8e3cfb)
628
629 * New Lints:
630   * [`unneeded_wildcard_pattern`] [#4537](https://github.com/rust-lang/rust-clippy/pull/4537)
631   * [`needless_doctest_main`] [#4603](https://github.com/rust-lang/rust-clippy/pull/4603)
632   * [`suspicious_unary_op_formatting`] [#4615](https://github.com/rust-lang/rust-clippy/pull/4615)
633   * [`debug_assert_with_mut_call`] [#4680](https://github.com/rust-lang/rust-clippy/pull/4680)
634   * [`unused_self`] [#4619](https://github.com/rust-lang/rust-clippy/pull/4619)
635   * [`inefficient_to_string`] [#4683](https://github.com/rust-lang/rust-clippy/pull/4683)
636   * [`must_use_unit`] [#4560](https://github.com/rust-lang/rust-clippy/pull/4560)
637   * [`must_use_candidate`] [#4560](https://github.com/rust-lang/rust-clippy/pull/4560)
638   * [`double_must_use`] [#4560](https://github.com/rust-lang/rust-clippy/pull/4560)
639   * [`comparison_chain`] [#4569](https://github.com/rust-lang/rust-clippy/pull/4569)
640   * [`unsound_collection_transmute`] [#4592](https://github.com/rust-lang/rust-clippy/pull/4592)
641   * [`panic`] [#4657](https://github.com/rust-lang/rust-clippy/pull/4657)
642   * [`unreachable`] [#4657](https://github.com/rust-lang/rust-clippy/pull/4657)
643   * [`todo`] [#4657](https://github.com/rust-lang/rust-clippy/pull/4657)
644   * `option_expect_used` [#4657](https://github.com/rust-lang/rust-clippy/pull/4657)
645   * `result_expect_used` [#4657](https://github.com/rust-lang/rust-clippy/pull/4657)
646 * Move `redundant_clone` to perf group [#4509](https://github.com/rust-lang/rust-clippy/pull/4509)
647 * Move `manual_mul_add` to nursery group [#4736](https://github.com/rust-lang/rust-clippy/pull/4736)
648 * 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)
649 * Expand `integer_arithmetic` to also detect mutating arithmetic like `+=` [#4585](https://github.com/rust-lang/rust-clippy/pull/4585)
650 * Fix false positive in `nonminimal_bool` [#4568](https://github.com/rust-lang/rust-clippy/pull/4568)
651 * Fix false positive in `missing_safety_doc` [#4611](https://github.com/rust-lang/rust-clippy/pull/4611)
652 * Fix false positive in `cast_sign_loss` [#4614](https://github.com/rust-lang/rust-clippy/pull/4614)
653 * Fix false positive in `redundant_clone` [#4509](https://github.com/rust-lang/rust-clippy/pull/4509)
654 * Fix false positive in `try_err` [#4721](https://github.com/rust-lang/rust-clippy/pull/4721)
655 * Fix false positive in `toplevel_ref_arg` [#4570](https://github.com/rust-lang/rust-clippy/pull/4570)
656 * Fix false positive in `multiple_inherent_impl` [#4593](https://github.com/rust-lang/rust-clippy/pull/4593)
657 * Improve more suggestions and tests in preparation for the unstable `cargo fix --clippy` [#4575](https://github.com/rust-lang/rust-clippy/pull/4575)
658 * Improve suggestion for `zero_ptr` [#4599](https://github.com/rust-lang/rust-clippy/pull/4599)
659 * Improve suggestion for `explicit_counter_loop` [#4691](https://github.com/rust-lang/rust-clippy/pull/4691)
660 * Improve suggestion for `mul_add` [#4602](https://github.com/rust-lang/rust-clippy/pull/4602)
661 * Improve suggestion for `assertions_on_constants` [#4635](https://github.com/rust-lang/rust-clippy/pull/4635)
662 * Fix ICE in `use_self` [#4671](https://github.com/rust-lang/rust-clippy/pull/4671)
663 * Fix ICE when encountering const casts [#4590](https://github.com/rust-lang/rust-clippy/pull/4590)
664
665 ## Rust 1.39
666
667 Released 2019-11-07
668
669 [3aea860...4e7e71b](https://github.com/rust-lang/rust-clippy/compare/3aea860...4e7e71b)
670
671 * New Lints:
672   * [`uninit_assumed_init`] [#4479](https://github.com/rust-lang/rust-clippy/pull/4479)
673   * [`flat_map_identity`] [#4231](https://github.com/rust-lang/rust-clippy/pull/4231)
674   * [`missing_safety_doc`] [#4535](https://github.com/rust-lang/rust-clippy/pull/4535)
675   * [`mem_replace_with_uninit`] [#4511](https://github.com/rust-lang/rust-clippy/pull/4511)
676   * [`suspicious_map`] [#4394](https://github.com/rust-lang/rust-clippy/pull/4394)
677   * `option_and_then_some` [#4386](https://github.com/rust-lang/rust-clippy/pull/4386)
678   * [`manual_saturating_arithmetic`] [#4498](https://github.com/rust-lang/rust-clippy/pull/4498)
679 * 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)
680 * Move `type_repetition_in_bounds` to pedantic group [#4403](https://github.com/rust-lang/rust-clippy/pull/4403)
681 * Move `cast_lossless` to pedantic group [#4539](https://github.com/rust-lang/rust-clippy/pull/4539)
682 * `temporary_cstring_as_ptr` now catches more cases [#4425](https://github.com/rust-lang/rust-clippy/pull/4425)
683 * `use_self` now works in constructors, too [#4525](https://github.com/rust-lang/rust-clippy/pull/4525)
684 * `cargo_common_metadata` now checks for license files [#4518](https://github.com/rust-lang/rust-clippy/pull/4518)
685 * `cognitive_complexity` now includes the measured complexity in the warning message [#4469](https://github.com/rust-lang/rust-clippy/pull/4469)
686 * Fix false positives in `block_in_if_*` lints [#4458](https://github.com/rust-lang/rust-clippy/pull/4458)
687 * Fix false positive in `cast_lossless` [#4473](https://github.com/rust-lang/rust-clippy/pull/4473)
688 * Fix false positive in `clone_on_copy` [#4411](https://github.com/rust-lang/rust-clippy/pull/4411)
689 * Fix false positive in `deref_addrof` [#4487](https://github.com/rust-lang/rust-clippy/pull/4487)
690 * Fix false positive in `too_many_lines` [#4490](https://github.com/rust-lang/rust-clippy/pull/4490)
691 * Fix false positive in `new_ret_no_self` [#4365](https://github.com/rust-lang/rust-clippy/pull/4365)
692 * Fix false positive in `manual_swap` [#4478](https://github.com/rust-lang/rust-clippy/pull/4478)
693 * Fix false positive in `missing_const_for_fn` [#4450](https://github.com/rust-lang/rust-clippy/pull/4450)
694 * Fix false positive in `extra_unused_lifetimes` [#4477](https://github.com/rust-lang/rust-clippy/pull/4477)
695 * Fix false positive in `inherent_to_string` [#4460](https://github.com/rust-lang/rust-clippy/pull/4460)
696 * Fix false positive in `map_entry` [#4495](https://github.com/rust-lang/rust-clippy/pull/4495)
697 * Fix false positive in `unused_unit` [#4445](https://github.com/rust-lang/rust-clippy/pull/4445)
698 * Fix false positive in `redundant_pattern` [#4489](https://github.com/rust-lang/rust-clippy/pull/4489)
699 * Fix false positive in `wrong_self_convention` [#4369](https://github.com/rust-lang/rust-clippy/pull/4369)
700 * Improve various suggestions and tests in preparation for the unstable `cargo fix --clippy` [#4558](https://github.com/rust-lang/rust-clippy/pull/4558)
701 * Improve suggestions for `redundant_pattern_matching` [#4352](https://github.com/rust-lang/rust-clippy/pull/4352)
702 * Improve suggestions for `explicit_write` [#4544](https://github.com/rust-lang/rust-clippy/pull/4544)
703 * Improve suggestion for `or_fun_call` [#4522](https://github.com/rust-lang/rust-clippy/pull/4522)
704 * Improve suggestion for `match_as_ref` [#4446](https://github.com/rust-lang/rust-clippy/pull/4446)
705 * Improve suggestion for `unnecessary_fold_span` [#4382](https://github.com/rust-lang/rust-clippy/pull/4382)
706 * Add suggestions for `unseparated_literal_suffix` [#4401](https://github.com/rust-lang/rust-clippy/pull/4401)
707 * Add suggestions for `char_lit_as_u8` [#4418](https://github.com/rust-lang/rust-clippy/pull/4418)
708
709 ## Rust 1.38
710
711 Released 2019-09-26
712
713 [e3cb40e...3aea860](https://github.com/rust-lang/rust-clippy/compare/e3cb40e...3aea860)
714
715 * New Lints:
716   * [`main_recursion`] [#4203](https://github.com/rust-lang/rust-clippy/pull/4203)
717   * [`inherent_to_string`] [#4259](https://github.com/rust-lang/rust-clippy/pull/4259)
718   * [`inherent_to_string_shadow_display`] [#4259](https://github.com/rust-lang/rust-clippy/pull/4259)
719   * [`type_repetition_in_bounds`] [#3766](https://github.com/rust-lang/rust-clippy/pull/3766)
720   * [`try_err`] [#4222](https://github.com/rust-lang/rust-clippy/pull/4222)
721 * Move `{unnnecessary,panicking}_unwrap` out of nursery [#4307](https://github.com/rust-lang/rust-clippy/pull/4307)
722 * Extend the `use_self` lint to suggest uses of `Self::Variant` [#4308](https://github.com/rust-lang/rust-clippy/pull/4308)
723 * Improve suggestion for needless return [#4262](https://github.com/rust-lang/rust-clippy/pull/4262)
724 * Add auto-fixable suggestion for `let_unit` [#4337](https://github.com/rust-lang/rust-clippy/pull/4337)
725 * Fix false positive in `pub_enum_variant_names` and `enum_variant_names` [#4345](https://github.com/rust-lang/rust-clippy/pull/4345)
726 * Fix false positive in `cast_ptr_alignment` [#4257](https://github.com/rust-lang/rust-clippy/pull/4257)
727 * Fix false positive in `string_lit_as_bytes` [#4233](https://github.com/rust-lang/rust-clippy/pull/4233)
728 * Fix false positive in `needless_lifetimes` [#4266](https://github.com/rust-lang/rust-clippy/pull/4266)
729 * Fix false positive in `float_cmp` [#4275](https://github.com/rust-lang/rust-clippy/pull/4275)
730 * Fix false positives in `needless_return` [#4274](https://github.com/rust-lang/rust-clippy/pull/4274)
731 * Fix false negative in `match_same_arms` [#4246](https://github.com/rust-lang/rust-clippy/pull/4246)
732 * Fix incorrect suggestion for `needless_bool` [#4335](https://github.com/rust-lang/rust-clippy/pull/4335)
733 * Improve suggestion for `cast_ptr_alignment` [#4257](https://github.com/rust-lang/rust-clippy/pull/4257)
734 * Improve suggestion for `single_char_literal` [#4361](https://github.com/rust-lang/rust-clippy/pull/4361)
735 * Improve suggestion for `len_zero` [#4314](https://github.com/rust-lang/rust-clippy/pull/4314)
736 * Fix ICE in `implicit_hasher` [#4268](https://github.com/rust-lang/rust-clippy/pull/4268)
737 * Fix allow bug in `trivially_copy_pass_by_ref` [#4250](https://github.com/rust-lang/rust-clippy/pull/4250)
738
739 ## Rust 1.37
740
741 Released 2019-08-15
742
743 [082cfa7...e3cb40e](https://github.com/rust-lang/rust-clippy/compare/082cfa7...e3cb40e)
744
745 * New Lints:
746   * [`checked_conversions`] [#4088](https://github.com/rust-lang/rust-clippy/pull/4088)
747   * [`get_last_with_len`] [#3832](https://github.com/rust-lang/rust-clippy/pull/3832)
748   * [`integer_division`] [#4195](https://github.com/rust-lang/rust-clippy/pull/4195)
749 * Renamed Lint: `const_static_lifetime` is now called [`redundant_static_lifetimes`].
750   The lint now covers statics in addition to consts [#4162](https://github.com/rust-lang/rust-clippy/pull/4162)
751 * [`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)
752 * [`needless_return`] now works with void functions [#4220](https://github.com/rust-lang/rust-clippy/pull/4220)
753 * Fix false positive in [`redundant_closure`] [#4190](https://github.com/rust-lang/rust-clippy/pull/4190)
754 * Fix false positive in [`useless_attribute`] [#4107](https://github.com/rust-lang/rust-clippy/pull/4107)
755 * Fix incorrect suggestion for [`float_cmp`] [#4214](https://github.com/rust-lang/rust-clippy/pull/4214)
756 * Add suggestions for [`print_with_newline`] and [`write_with_newline`] [#4136](https://github.com/rust-lang/rust-clippy/pull/4136)
757 * Improve suggestions for `option_map_unwrap_or_else` and `result_map_unwrap_or_else` [#4164](https://github.com/rust-lang/rust-clippy/pull/4164)
758 * Improve suggestions for [`non_ascii_literal`] [#4119](https://github.com/rust-lang/rust-clippy/pull/4119)
759 * Improve diagnostics for [`let_and_return`] [#4137](https://github.com/rust-lang/rust-clippy/pull/4137)
760 * Improve diagnostics for [`trivially_copy_pass_by_ref`] [#4071](https://github.com/rust-lang/rust-clippy/pull/4071)
761 * Add macro check for [`unreadable_literal`] [#4099](https://github.com/rust-lang/rust-clippy/pull/4099)
762
763 ## Rust 1.36
764
765 Released 2019-07-04
766
767 [eb9f9b1...082cfa7](https://github.com/rust-lang/rust-clippy/compare/eb9f9b1...082cfa7)
768
769 * New lints: [`find_map`], [`filter_map_next`] [#4039](https://github.com/rust-lang/rust-clippy/pull/4039)
770 * New lint: [`path_buf_push_overwrite`] [#3954](https://github.com/rust-lang/rust-clippy/pull/3954)
771 * Move `path_buf_push_overwrite` to the nursery [#4013](https://github.com/rust-lang/rust-clippy/pull/4013)
772 * Split [`redundant_closure`] into [`redundant_closure`] and [`redundant_closure_for_method_calls`] [#4110](https://github.com/rust-lang/rust-clippy/pull/4101)
773 * Allow allowing of [`toplevel_ref_arg`] lint [#4007](https://github.com/rust-lang/rust-clippy/pull/4007)
774 * Fix false negative in [`or_fun_call`] pertaining to nested constructors [#4084](https://github.com/rust-lang/rust-clippy/pull/4084)
775 * Fix false positive in [`or_fun_call`] pertaining to enum variant constructors [#4018](https://github.com/rust-lang/rust-clippy/pull/4018)
776 * Fix false positive in [`useless_let_if_seq`] pertaining to interior mutability [#4035](https://github.com/rust-lang/rust-clippy/pull/4035)
777 * Fix false positive in [`redundant_closure`] pertaining to non-function types [#4008](https://github.com/rust-lang/rust-clippy/pull/4008)
778 * Fix false positive in [`let_and_return`] pertaining to attributes on `let`s [#4024](https://github.com/rust-lang/rust-clippy/pull/4024)
779 * Fix false positive in [`module_name_repetitions`] lint pertaining to attributes [#4006](https://github.com/rust-lang/rust-clippy/pull/4006)
780 * Fix false positive on [`assertions_on_constants`] pertaining to `debug_assert!` [#3989](https://github.com/rust-lang/rust-clippy/pull/3989)
781 * 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)
782 * Improve suggestion for [`search_is_some`] [#4049](https://github.com/rust-lang/rust-clippy/pull/4049)
783 * Improve suggestion applicability for [`naive_bytecount`] [#3984](https://github.com/rust-lang/rust-clippy/pull/3984)
784 * Improve suggestion applicability for [`while_let_loop`] [#3975](https://github.com/rust-lang/rust-clippy/pull/3975)
785 * Improve diagnostics for [`too_many_arguments`] [#4053](https://github.com/rust-lang/rust-clippy/pull/4053)
786 * Improve diagnostics for [`cast_lossless`] [#4021](https://github.com/rust-lang/rust-clippy/pull/4021)
787 * Deal with macro checks in desugarings better [#4082](https://github.com/rust-lang/rust-clippy/pull/4082)
788 * Add macro check for [`unnecessary_cast`]  [#4026](https://github.com/rust-lang/rust-clippy/pull/4026)
789 * Remove [`approx_constant`]'s documentation's "Known problems" section. [#4027](https://github.com/rust-lang/rust-clippy/pull/4027)
790 * Fix ICE in [`suspicious_else_formatting`] [#3960](https://github.com/rust-lang/rust-clippy/pull/3960)
791 * Fix ICE in [`decimal_literal_representation`] [#3931](https://github.com/rust-lang/rust-clippy/pull/3931)
792
793
794 ## Rust 1.35
795
796 Released 2019-05-20
797
798 [1fac380..37f5c1e](https://github.com/rust-lang/rust-clippy/compare/1fac380...37f5c1e)
799
800 * New lint: [`drop_bounds`] to detect `T: Drop` bounds
801 * Split [`redundant_closure`] into [`redundant_closure`] and [`redundant_closure_for_method_calls`] [#4110](https://github.com/rust-lang/rust-clippy/pull/4101)
802 * Rename `cyclomatic_complexity` to [`cognitive_complexity`], start work on making lint more practical for Rust code
803 * Move [`get_unwrap`] to the restriction category
804 * Improve suggestions for [`iter_cloned_collect`]
805 * Improve suggestions for [`cast_lossless`] to suggest suffixed literals
806 * Fix false positives in [`print_with_newline`] and [`write_with_newline`] pertaining to raw strings
807 * Fix false positive in [`needless_range_loop`] pertaining to structs without a `.iter()`
808 * Fix false positive in [`bool_comparison`] pertaining to non-bool types
809 * Fix false positive in [`redundant_closure`] pertaining to differences in borrows
810 * Fix false positive in `option_map_unwrap_or` on non-copy types
811 * Fix false positives in [`missing_const_for_fn`] pertaining to macros and trait method impls
812 * Fix false positive in [`needless_pass_by_value`] pertaining to procedural macros
813 * Fix false positive in [`needless_continue`] pertaining to loop labels
814 * Fix false positive for [`boxed_local`] pertaining to arguments moved into closures
815 * Fix false positive for [`use_self`] in nested functions
816 * Fix suggestion for [`expect_fun_call`] (https://github.com/rust-lang/rust-clippy/pull/3846)
817 * Fix suggestion for [`explicit_counter_loop`] to deal with parenthesizing range variables
818 * Fix suggestion for [`single_char_pattern`] to correctly escape single quotes
819 * Avoid triggering [`redundant_closure`] in macros
820 * 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)
821
822 ## Rust 1.34
823
824 Released 2019-04-10
825
826 [1b89724...1fac380](https://github.com/rust-lang/rust-clippy/compare/1b89724...1fac380)
827
828 * New lint: [`assertions_on_constants`] to detect for example `assert!(true)`
829 * New lint: [`dbg_macro`] to detect uses of the `dbg!` macro
830 * New lint: [`missing_const_for_fn`] that can suggest functions to be made `const`
831 * New lint: [`too_many_lines`] to detect functions with excessive LOC. It can be
832   configured using the `too-many-lines-threshold` configuration.
833 * New lint: [`wildcard_enum_match_arm`] to check for wildcard enum matches using `_`
834 * Expand `redundant_closure` to also work for methods (not only functions)
835 * Fix ICEs in `vec_box`, `needless_pass_by_value` and `implicit_hasher`
836 * Fix false positive in `cast_sign_loss`
837 * Fix false positive in `integer_arithmetic`
838 * Fix false positive in `unit_arg`
839 * Fix false positives in `implicit_return`
840 * Add suggestion to `explicit_write`
841 * Improve suggestions for `question_mark` lint
842 * Fix incorrect suggestion for `cast_lossless`
843 * Fix incorrect suggestion for `expect_fun_call`
844 * Fix incorrect suggestion for `needless_bool`
845 * Fix incorrect suggestion for `needless_range_loop`
846 * Fix incorrect suggestion for `use_self`
847 * Fix incorrect suggestion for `while_let_on_iterator`
848 * Clippy is now slightly easier to invoke in non-cargo contexts. See
849   [#3665][pull3665] for more details.
850 * We now have [improved documentation][adding_lints] on how to add new lints
851
852 ## Rust 1.33
853
854 Released 2019-02-26
855
856 [b2601be...1b89724](https://github.com/rust-lang/rust-clippy/compare/b2601be...1b89724)
857
858 * New lints: [`implicit_return`], [`vec_box`], [`cast_ref_to_mut`]
859 * The `rust-clippy` repository is now part of the `rust-lang` org.
860 * Rename `stutter` to `module_name_repetitions`
861 * Merge `new_without_default_derive` into `new_without_default` lint
862 * Move `large_digit_groups` from `style` group to `pedantic`
863 * Expand `bool_comparison` to check for `<`, `<=`, `>`, `>=`, and `!=`
864   comparisons against booleans
865 * Expand `no_effect` to detect writes to constants such as `A_CONST.field = 2`
866 * Expand `redundant_clone` to work on struct fields
867 * Expand `suspicious_else_formatting` to detect `if .. {..} {..}`
868 * Expand `use_self` to work on tuple structs and also in local macros
869 * Fix ICE in `result_map_unit_fn` and `option_map_unit_fn`
870 * Fix false positives in `implicit_return`
871 * Fix false positives in `use_self`
872 * Fix false negative in `clone_on_copy`
873 * Fix false positive in `doc_markdown`
874 * Fix false positive in `empty_loop`
875 * Fix false positive in `if_same_then_else`
876 * Fix false positive in `infinite_iter`
877 * Fix false positive in `question_mark`
878 * Fix false positive in `useless_asref`
879 * Fix false positive in `wildcard_dependencies`
880 * Fix false positive in `write_with_newline`
881 * Add suggestion to `explicit_write`
882 * Improve suggestions for `question_mark` lint
883 * Fix incorrect suggestion for `get_unwrap`
884
885 ## Rust 1.32
886
887 Released 2019-01-17
888
889 [2e26fdc2...b2601be](https://github.com/rust-lang/rust-clippy/compare/2e26fdc2...b2601be)
890
891 * New lints: [`slow_vector_initialization`], [`mem_discriminant_non_enum`],
892   [`redundant_clone`], [`wildcard_dependencies`],
893   [`into_iter_on_ref`], [`into_iter_on_array`], [`deprecated_cfg_attr`],
894   [`mem_discriminant_non_enum`], [`cargo_common_metadata`]
895 * Add support for `u128` and `i128` to integer related lints
896 * Add float support to `mistyped_literal_suffixes`
897 * Fix false positives in `use_self`
898 * Fix false positives in `missing_comma`
899 * Fix false positives in `new_ret_no_self`
900 * Fix false positives in `possible_missing_comma`
901 * Fix false positive in `integer_arithmetic` in constant items
902 * Fix false positive in `needless_borrow`
903 * Fix false positive in `out_of_bounds_indexing`
904 * Fix false positive in `new_without_default_derive`
905 * Fix false positive in `string_lit_as_bytes`
906 * Fix false negative in `out_of_bounds_indexing`
907 * Fix false negative in `use_self`. It will now also check existential types
908 * Fix incorrect suggestion for `redundant_closure_call`
909 * Fix various suggestions that contained expanded macros
910 * Fix `bool_comparison` triggering 3 times on on on the same code
911 * Expand `trivially_copy_pass_by_ref` to work on trait methods
912 * Improve suggestion for `needless_range_loop`
913 * Move `needless_pass_by_value` from `pedantic` group to `style`
914
915 ## Rust 1.31
916
917 Released 2018-12-06
918
919 [125907ad..2e26fdc2](https://github.com/rust-lang/rust-clippy/compare/125907ad..2e26fdc2)
920
921 * Clippy has been relicensed under a dual MIT / Apache license.
922   See [#3093](https://github.com/rust-lang/rust-clippy/issues/3093) for more
923   information.
924 * With Rust 1.31, Clippy is no longer available via crates.io. The recommended
925   installation method is via `rustup component add clippy`.
926 * New lints: [`redundant_pattern_matching`], [`unnecessary_filter_map`],
927   [`unused_unit`], [`map_flatten`], [`mem_replace_option_with_none`]
928 * Fix ICE in `if_let_redundant_pattern_matching`
929 * Fix ICE in `needless_pass_by_value` when encountering a generic function
930   argument with a lifetime parameter
931 * Fix ICE in `needless_range_loop`
932 * Fix ICE in `single_char_pattern` when encountering a constant value
933 * Fix false positive in `assign_op_pattern`
934 * Fix false positive in `boxed_local` on trait implementations
935 * Fix false positive in `cmp_owned`
936 * Fix false positive in `collapsible_if` when conditionals have comments
937 * Fix false positive in `double_parens`
938 * Fix false positive in `excessive_precision`
939 * Fix false positive in `explicit_counter_loop`
940 * Fix false positive in `fn_to_numeric_cast_with_truncation`
941 * Fix false positive in `map_clone`
942 * Fix false positive in `new_ret_no_self`
943 * Fix false positive in `new_without_default` when `new` is unsafe
944 * Fix false positive in `type_complexity` when using extern types
945 * Fix false positive in `useless_format`
946 * Fix false positive in `wrong_self_convention`
947 * Fix incorrect suggestion for `excessive_precision`
948 * Fix incorrect suggestion for `expect_fun_call`
949 * Fix incorrect suggestion for `get_unwrap`
950 * Fix incorrect suggestion for `useless_format`
951 * `fn_to_numeric_cast_with_truncation` lint can be disabled again
952 * Improve suggestions for `manual_memcpy`
953 * Improve help message for `needless_lifetimes`
954
955 ## Rust 1.30
956
957 Released 2018-10-25
958
959 [14207503...125907ad](https://github.com/rust-lang/rust-clippy/compare/14207503...125907ad)
960
961 * Deprecate `assign_ops` lint
962 * New lints: [`mistyped_literal_suffixes`], [`ptr_offset_with_cast`],
963   [`needless_collect`], [`copy_iterator`]
964 * `cargo clippy -V` now includes the Clippy commit hash of the Rust
965   Clippy component
966 * Fix ICE in `implicit_hasher`
967 * Fix ICE when encountering `println!("{}" a);`
968 * Fix ICE when encountering a macro call in match statements
969 * Fix false positive in `default_trait_access`
970 * Fix false positive in `trivially_copy_pass_by_ref`
971 * Fix false positive in `similar_names`
972 * Fix false positive in `redundant_field_name`
973 * Fix false positive in `expect_fun_call`
974 * Fix false negative in `identity_conversion`
975 * Fix false negative in `explicit_counter_loop`
976 * Fix `range_plus_one` suggestion and false negative
977 * `print_with_newline` / `write_with_newline`: don't warn about string with several `\n`s in them
978 * Fix `useless_attribute` to also whitelist `unused_extern_crates`
979 * Fix incorrect suggestion for `single_char_pattern`
980 * Improve suggestion for `identity_conversion` lint
981 * Move `explicit_iter_loop` and `explicit_into_iter_loop` from `style` group to `pedantic`
982 * Move `range_plus_one` and `range_minus_one` from `nursery` group to `complexity`
983 * Move `shadow_unrelated` from `restriction` group to `pedantic`
984 * Move `indexing_slicing` from `pedantic` group to `restriction`
985
986 ## Rust 1.29
987
988 Released 2018-09-13
989
990 [v0.0.212...14207503](https://github.com/rust-lang/rust-clippy/compare/v0.0.212...14207503)
991
992 * :tada: :tada: **Rust 1.29 is the first stable Rust that includes a bundled Clippy** :tada:
993   :tada:
994   You can now run `rustup component add clippy-preview` and then `cargo
995   clippy` to run Clippy. This should put an end to the continuous nightly
996   upgrades for Clippy users.
997 * Clippy now follows the Rust versioning scheme instead of its own
998 * Fix ICE when encountering a `while let (..) = x.iter()` construct
999 * Fix false positives in `use_self`
1000 * Fix false positive in `trivially_copy_pass_by_ref`
1001 * Fix false positive in `useless_attribute` lint
1002 * Fix false positive in `print_literal`
1003 * Fix `use_self` regressions
1004 * Improve lint message for `neg_cmp_op_on_partial_ord`
1005 * Improve suggestion highlight for `single_char_pattern`
1006 * Improve suggestions for various print/write macro lints
1007 * Improve website header
1008
1009 ## 0.0.212 (2018-07-10)
1010 * Rustup to *rustc 1.29.0-nightly (e06c87544 2018-07-06)*
1011
1012 ## 0.0.211
1013 * Rustup to *rustc 1.28.0-nightly (e3bf634e0 2018-06-28)*
1014
1015 ## 0.0.210
1016 * Rustup to *rustc 1.28.0-nightly (01cc982e9 2018-06-24)*
1017
1018 ## 0.0.209
1019 * Rustup to *rustc 1.28.0-nightly (523097979 2018-06-18)*
1020
1021 ## 0.0.208
1022 * Rustup to *rustc 1.28.0-nightly (86a8f1a63 2018-06-17)*
1023
1024 ## 0.0.207
1025 * Rustup to *rustc 1.28.0-nightly (2a0062974 2018-06-09)*
1026
1027 ## 0.0.206
1028 * Rustup to *rustc 1.28.0-nightly (5bf68db6e 2018-05-28)*
1029
1030 ## 0.0.205
1031 * Rustup to *rustc 1.28.0-nightly (990d8aa74 2018-05-25)*
1032 * Rename `unused_lifetimes` to `extra_unused_lifetimes` because of naming conflict with new rustc lint
1033
1034 ## 0.0.204
1035 * Rustup to *rustc 1.28.0-nightly (71e87be38 2018-05-22)*
1036
1037 ## 0.0.203
1038 * Rustup to *rustc 1.28.0-nightly (a3085756e 2018-05-19)*
1039 * Clippy attributes are now of the form `clippy::cyclomatic_complexity` instead of `clippy(cyclomatic_complexity)`
1040
1041 ## 0.0.202
1042 * Rustup to *rustc 1.28.0-nightly (952f344cd 2018-05-18)*
1043
1044 ## 0.0.201
1045 * Rustup to *rustc 1.27.0-nightly (2f2a11dfc 2018-05-16)*
1046
1047 ## 0.0.200
1048 * Rustup to *rustc 1.27.0-nightly (9fae15374 2018-05-13)*
1049
1050 ## 0.0.199
1051 * Rustup to *rustc 1.27.0-nightly (ff2ac35db 2018-05-12)*
1052
1053 ## 0.0.198
1054 * Rustup to *rustc 1.27.0-nightly (acd3871ba 2018-05-10)*
1055
1056 ## 0.0.197
1057 * Rustup to *rustc 1.27.0-nightly (428ea5f6b 2018-05-06)*
1058
1059 ## 0.0.196
1060 * Rustup to *rustc 1.27.0-nightly (e82261dfb 2018-05-03)*
1061
1062 ## 0.0.195
1063 * Rustup to *rustc 1.27.0-nightly (ac3c2288f 2018-04-18)*
1064
1065 ## 0.0.194
1066 * Rustup to *rustc 1.27.0-nightly (bd40cbbe1 2018-04-14)*
1067 * New lints: [`cast_ptr_alignment`], [`transmute_ptr_to_ptr`], [`write_literal`], [`write_with_newline`], [`writeln_empty_string`]
1068
1069 ## 0.0.193
1070 * Rustup to *rustc 1.27.0-nightly (eeea94c11 2018-04-06)*
1071
1072 ## 0.0.192
1073 * Rustup to *rustc 1.27.0-nightly (fb44b4c0e 2018-04-04)*
1074 * New lint: [`print_literal`]
1075
1076 ## 0.0.191
1077 * Rustup to *rustc 1.26.0-nightly (ae544ee1c 2018-03-29)*
1078 * Lint audit; categorize lints as style, correctness, complexity, pedantic, nursery, restriction.
1079
1080 ## 0.0.190
1081 * Fix a bunch of intermittent cargo bugs
1082
1083 ## 0.0.189
1084 * Rustup to *rustc 1.26.0-nightly (5508b2714 2018-03-18)*
1085
1086 ## 0.0.188
1087 * Rustup to *rustc 1.26.0-nightly (392645394 2018-03-15)*
1088 * New lint: [`while_immutable_condition`]
1089
1090 ## 0.0.187
1091 * Rustup to *rustc 1.26.0-nightly (322d7f7b9 2018-02-25)*
1092 * New lints: [`redundant_field_names`], [`suspicious_arithmetic_impl`], [`suspicious_op_assign_impl`]
1093
1094 ## 0.0.186
1095 * Rustup to *rustc 1.25.0-nightly (0c6091fbd 2018-02-04)*
1096 * Various false positive fixes
1097
1098 ## 0.0.185
1099 * Rustup to *rustc 1.25.0-nightly (56733bc9f 2018-02-01)*
1100 * New lint: [`question_mark`]
1101
1102 ## 0.0.184
1103 * Rustup to *rustc 1.25.0-nightly (90eb44a58 2018-01-29)*
1104 * New lints: [`double_comparisons`], [`empty_line_after_outer_attr`]
1105
1106 ## 0.0.183
1107 * Rustup to *rustc 1.25.0-nightly (21882aad7 2018-01-28)*
1108 * New lint: [`misaligned_transmute`]
1109
1110 ## 0.0.182
1111 * Rustup to *rustc 1.25.0-nightly (a0dcecff9 2018-01-24)*
1112 * New lint: [`decimal_literal_representation`]
1113
1114 ## 0.0.181
1115 * Rustup to *rustc 1.25.0-nightly (97520ccb1 2018-01-21)*
1116 * New lints: [`else_if_without_else`], [`option_option`], [`unit_arg`], [`unnecessary_fold`]
1117 * Removed `unit_expr`
1118 * Various false positive fixes for [`needless_pass_by_value`]
1119
1120 ## 0.0.180
1121 * Rustup to *rustc 1.25.0-nightly (3f92e8d89 2018-01-14)*
1122
1123 ## 0.0.179
1124 * Rustup to *rustc 1.25.0-nightly (61452e506 2018-01-09)*
1125
1126 ## 0.0.178
1127 * Rustup to *rustc 1.25.0-nightly (ee220daca 2018-01-07)*
1128
1129 ## 0.0.177
1130 * Rustup to *rustc 1.24.0-nightly (250b49205 2017-12-21)*
1131 * New lint: [`match_as_ref`]
1132
1133 ## 0.0.176
1134 * Rustup to *rustc 1.24.0-nightly (0077d128d 2017-12-14)*
1135
1136 ## 0.0.175
1137 * Rustup to *rustc 1.24.0-nightly (bb42071f6 2017-12-01)*
1138
1139 ## 0.0.174
1140 * Rustup to *rustc 1.23.0-nightly (63739ab7b 2017-11-21)*
1141
1142 ## 0.0.173
1143 * Rustup to *rustc 1.23.0-nightly (33374fa9d 2017-11-20)*
1144
1145 ## 0.0.172
1146 * Rustup to *rustc 1.23.0-nightly (d0f8e2913 2017-11-16)*
1147
1148 ## 0.0.171
1149 * Rustup to *rustc 1.23.0-nightly (ff0f5de3b 2017-11-14)*
1150
1151 ## 0.0.170
1152 * Rustup to *rustc 1.23.0-nightly (d6b06c63a 2017-11-09)*
1153
1154 ## 0.0.169
1155 * Rustup to *rustc 1.23.0-nightly (3b82e4c74 2017-11-05)*
1156 * New lints: [`just_underscores_and_digits`], `result_map_unwrap_or_else`, [`transmute_bytes_to_str`]
1157
1158 ## 0.0.168
1159 * Rustup to *rustc 1.23.0-nightly (f0fe716db 2017-10-30)*
1160
1161 ## 0.0.167
1162 * Rustup to *rustc 1.23.0-nightly (90ef3372e 2017-10-29)*
1163 * New lints: `const_static_lifetime`, [`erasing_op`], [`fallible_impl_from`], [`println_empty_string`], [`useless_asref`]
1164
1165 ## 0.0.166
1166 * Rustup to *rustc 1.22.0-nightly (b7960878b 2017-10-18)*
1167 * New lints: [`explicit_write`], `identity_conversion`, [`implicit_hasher`], [`invalid_ref`], [`option_map_or_none`],
1168   [`range_minus_one`], [`range_plus_one`], [`transmute_int_to_bool`], [`transmute_int_to_char`],
1169   [`transmute_int_to_float`]
1170
1171 ## 0.0.165
1172 * Rust upgrade to rustc 1.22.0-nightly (0e6f4cf51 2017-09-27)
1173 * New lint: [`mut_range_bound`]
1174
1175 ## 0.0.164
1176 * Update to *rustc 1.22.0-nightly (6c476ce46 2017-09-25)*
1177 * New lint: [`int_plus_one`]
1178
1179 ## 0.0.163
1180 * Update to *rustc 1.22.0-nightly (14039a42a 2017-09-22)*
1181
1182 ## 0.0.162
1183 * Update to *rustc 1.22.0-nightly (0701b37d9 2017-09-18)*
1184 * New lint: [`chars_last_cmp`]
1185 * Improved suggestions for [`needless_borrow`], [`ptr_arg`],
1186
1187 ## 0.0.161
1188 * Update to *rustc 1.22.0-nightly (539f2083d 2017-09-13)*
1189
1190 ## 0.0.160
1191 * Update to *rustc 1.22.0-nightly (dd08c3070 2017-09-12)*
1192
1193 ## 0.0.159
1194 * Update to *rustc 1.22.0-nightly (eba374fb2 2017-09-11)*
1195 * New lint: [`clone_on_ref_ptr`]
1196
1197 ## 0.0.158
1198 * New lint: [`manual_memcpy`]
1199 * [`cast_lossless`] no longer has redundant parentheses in its suggestions
1200 * Update to *rustc 1.22.0-nightly (dead08cb3 2017-09-08)*
1201
1202 ## 0.0.157 - 2017-09-04
1203 * Update to *rustc 1.22.0-nightly (981ce7d8d 2017-09-03)*
1204 * New lint: `unit_expr`
1205
1206 ## 0.0.156 - 2017-09-03
1207 * Update to *rustc 1.22.0-nightly (744dd6c1d 2017-09-02)*
1208
1209 ## 0.0.155
1210 * Update to *rustc 1.21.0-nightly (c11f689d2 2017-08-29)*
1211 * New lint: [`infinite_iter`], [`maybe_infinite_iter`], [`cast_lossless`]
1212
1213 ## 0.0.154
1214 * Update to *rustc 1.21.0-nightly (2c0558f63 2017-08-24)*
1215 * Fix [`use_self`] triggering inside derives
1216 * Add support for linting an entire workspace with `cargo clippy --all`
1217 * New lint: [`naive_bytecount`]
1218
1219 ## 0.0.153
1220 * Update to *rustc 1.21.0-nightly (8c303ed87 2017-08-20)*
1221 * New lint: [`use_self`]
1222
1223 ## 0.0.152
1224 * Update to *rustc 1.21.0-nightly (df511d554 2017-08-14)*
1225
1226 ## 0.0.151
1227 * Update to *rustc 1.21.0-nightly (13d94d5fa 2017-08-10)*
1228
1229 ## 0.0.150
1230 * Update to *rustc 1.21.0-nightly (215e0b10e 2017-08-08)*
1231
1232 ## 0.0.148
1233 * Update to *rustc 1.21.0-nightly (37c7d0ebb 2017-07-31)*
1234 * New lints: [`unreadable_literal`], [`inconsistent_digit_grouping`], [`large_digit_groups`]
1235
1236 ## 0.0.147
1237 * Update to *rustc 1.21.0-nightly (aac223f4f 2017-07-30)*
1238
1239 ## 0.0.146
1240 * Update to *rustc 1.21.0-nightly (52a330969 2017-07-27)*
1241 * Fixes false positives in `inline_always`
1242 * Fixes false negatives in `panic_params`
1243
1244 ## 0.0.145
1245 * Update to *rustc 1.20.0-nightly (afe145d22 2017-07-23)*
1246
1247 ## 0.0.144
1248 * Update to *rustc 1.20.0-nightly (086eaa78e 2017-07-15)*
1249
1250 ## 0.0.143
1251 * Update to *rustc 1.20.0-nightly (d84693b93 2017-07-09)*
1252 * Fix `cargo clippy` crashing on `dylib` projects
1253 * Fix false positives around `nested_while_let` and `never_loop`
1254
1255 ## 0.0.142
1256 * Update to *rustc 1.20.0-nightly (067971139 2017-07-02)*
1257
1258 ## 0.0.141
1259 * Rewrite of the `doc_markdown` lint.
1260 * Deprecated [`range_step_by_zero`]
1261 * New lint: [`iterator_step_by_zero`]
1262 * New lint: [`needless_borrowed_reference`]
1263 * Update to *rustc 1.20.0-nightly (69c65d296 2017-06-28)*
1264
1265 ## 0.0.140 - 2017-06-16
1266 * Update to *rustc 1.19.0-nightly (258ae6dd9 2017-06-15)*
1267
1268 ## 0.0.139 — 2017-06-10
1269 * Update to *rustc 1.19.0-nightly (4bf5c99af 2017-06-10)*
1270 * Fix bugs with for loop desugaring
1271 * Check for [`AsRef`]/[`AsMut`] arguments in [`wrong_self_convention`]
1272
1273 ## 0.0.138 — 2017-06-05
1274 * Update to *rustc 1.19.0-nightly (0418fa9d3 2017-06-04)*
1275
1276 ## 0.0.137 — 2017-06-05
1277 * Update to *rustc 1.19.0-nightly (6684d176c 2017-06-03)*
1278
1279 ## 0.0.136 — 2017—05—26
1280 * Update to *rustc 1.19.0-nightly (557967766 2017-05-26)*
1281
1282 ## 0.0.135 — 2017—05—24
1283 * Update to *rustc 1.19.0-nightly (5b13bff52 2017-05-23)*
1284
1285 ## 0.0.134 — 2017—05—19
1286 * Update to *rustc 1.19.0-nightly (0ed1ec9f9 2017-05-18)*
1287
1288 ## 0.0.133 — 2017—05—14
1289 * Update to *rustc 1.19.0-nightly (826d8f385 2017-05-13)*
1290
1291 ## 0.0.132 — 2017—05—05
1292 * Fix various bugs and some ices
1293
1294 ## 0.0.131 — 2017—05—04
1295 * Update to *rustc 1.19.0-nightly (2d4ed8e0c 2017-05-03)*
1296
1297 ## 0.0.130 — 2017—05—03
1298 * Update to *rustc 1.19.0-nightly (6a5fc9eec 2017-05-02)*
1299
1300 ## 0.0.129 — 2017-05-01
1301 * Update to *rustc 1.19.0-nightly (06fb4d256 2017-04-30)*
1302
1303 ## 0.0.128 — 2017-04-28
1304 * Update to *rustc 1.18.0-nightly (94e884b63 2017-04-27)*
1305
1306 ## 0.0.127 — 2017-04-27
1307 * Update to *rustc 1.18.0-nightly (036983201 2017-04-26)*
1308 * New lint: [`needless_continue`]
1309
1310 ## 0.0.126 — 2017-04-24
1311 * Update to *rustc 1.18.0-nightly (2bd4b5c6d 2017-04-23)*
1312
1313 ## 0.0.125 — 2017-04-19
1314 * Update to *rustc 1.18.0-nightly (9f2abadca 2017-04-18)*
1315
1316 ## 0.0.124 — 2017-04-16
1317 * Update to *rustc 1.18.0-nightly (d5cf1cb64 2017-04-15)*
1318
1319 ## 0.0.123 — 2017-04-07
1320 * Fix various false positives
1321
1322 ## 0.0.122 — 2017-04-07
1323 * Rustup to *rustc 1.18.0-nightly (91ae22a01 2017-04-05)*
1324 * New lint: [`op_ref`]
1325
1326 ## 0.0.121 — 2017-03-21
1327 * Rustup to *rustc 1.17.0-nightly (134c4a0f0 2017-03-20)*
1328
1329 ## 0.0.120 — 2017-03-17
1330 * Rustup to *rustc 1.17.0-nightly (0aeb9c129 2017-03-15)*
1331
1332 ## 0.0.119 — 2017-03-13
1333 * Rustup to *rustc 1.17.0-nightly (824c9ebbd 2017-03-12)*
1334
1335 ## 0.0.118 — 2017-03-05
1336 * Rustup to *rustc 1.17.0-nightly (b1e31766d 2017-03-03)*
1337
1338 ## 0.0.117 — 2017-03-01
1339 * Rustup to *rustc 1.17.0-nightly (be760566c 2017-02-28)*
1340
1341 ## 0.0.116 — 2017-02-28
1342 * Fix `cargo clippy` on 64 bit windows systems
1343
1344 ## 0.0.115 — 2017-02-27
1345 * Rustup to *rustc 1.17.0-nightly (60a0edc6c 2017-02-26)*
1346 * New lints: [`zero_ptr`], [`never_loop`], [`mut_from_ref`]
1347
1348 ## 0.0.114 — 2017-02-08
1349 * Rustup to *rustc 1.17.0-nightly (c49d10207 2017-02-07)*
1350 * Tests are now ui tests (testing the exact output of rustc)
1351
1352 ## 0.0.113 — 2017-02-04
1353 * Rustup to *rustc 1.16.0-nightly (eedaa94e3 2017-02-02)*
1354 * New lint: [`large_enum_variant`]
1355 * `explicit_into_iter_loop` provides suggestions
1356
1357 ## 0.0.112 — 2017-01-27
1358 * Rustup to *rustc 1.16.0-nightly (df8debf6d 2017-01-25)*
1359
1360 ## 0.0.111 — 2017-01-21
1361 * Rustup to *rustc 1.16.0-nightly (a52da95ce 2017-01-20)*
1362
1363 ## 0.0.110 — 2017-01-20
1364 * Add badges and categories to `Cargo.toml`
1365
1366 ## 0.0.109 — 2017-01-19
1367 * Update to *rustc 1.16.0-nightly (c07a6ae77 2017-01-17)*
1368
1369 ## 0.0.108 — 2017-01-12
1370 * Update to *rustc 1.16.0-nightly (2782e8f8f 2017-01-12)*
1371
1372 ## 0.0.107 — 2017-01-11
1373 * Update regex dependency
1374 * Fix FP when matching `&&mut` by `&ref`
1375 * Reintroduce `for (_, x) in &mut hash_map` -> `for x in hash_map.values_mut()`
1376 * New lints: [`unused_io_amount`], [`forget_ref`], [`short_circuit_statement`]
1377
1378 ## 0.0.106 — 2017-01-04
1379 * Fix FP introduced by rustup in [`wrong_self_convention`]
1380
1381 ## 0.0.105 — 2017-01-04
1382 * Update to *rustc 1.16.0-nightly (468227129 2017-01-03)*
1383 * New lints: [`deref_addrof`], [`double_parens`], [`pub_enum_variant_names`]
1384 * Fix suggestion in [`new_without_default`]
1385 * FP fix in [`absurd_extreme_comparisons`]
1386
1387 ## 0.0.104 — 2016-12-15
1388 * Update to *rustc 1.15.0-nightly (8f02c429a 2016-12-15)*
1389
1390 ## 0.0.103 — 2016-11-25
1391 * Update to *rustc 1.15.0-nightly (d5814b03e 2016-11-23)*
1392
1393 ## 0.0.102 — 2016-11-24
1394 * Update to *rustc 1.15.0-nightly (3bf2be9ce 2016-11-22)*
1395
1396 ## 0.0.101 — 2016-11-23
1397 * Update to *rustc 1.15.0-nightly (7b3eeea22 2016-11-21)*
1398 * New lint: [`string_extend_chars`]
1399
1400 ## 0.0.100 — 2016-11-20
1401 * Update to *rustc 1.15.0-nightly (ac635aa95 2016-11-18)*
1402
1403 ## 0.0.99 — 2016-11-18
1404 * Update to rustc 1.15.0-nightly (0ed951993 2016-11-14)
1405 * New lint: [`get_unwrap`]
1406
1407 ## 0.0.98 — 2016-11-08
1408 * Fixes an issue due to a change in how cargo handles `--sysroot`, which broke `cargo clippy`
1409
1410 ## 0.0.97 — 2016-11-03
1411 * For convenience, `cargo clippy` defines a `cargo-clippy` feature. This was
1412   previously added for a short time under the name `clippy` but removed for
1413   compatibility.
1414 * `cargo clippy --help` is more helping (and less helpful :smile:)
1415 * Rustup to *rustc 1.14.0-nightly (5665bdf3e 2016-11-02)*
1416 * New lints: [`if_let_redundant_pattern_matching`], [`partialeq_ne_impl`]
1417
1418 ## 0.0.96 — 2016-10-22
1419 * Rustup to *rustc 1.14.0-nightly (f09420685 2016-10-20)*
1420 * New lint: [`iter_skip_next`]
1421
1422 ## 0.0.95 — 2016-10-06
1423 * Rustup to *rustc 1.14.0-nightly (3210fd5c2 2016-10-05)*
1424
1425 ## 0.0.94 — 2016-10-04
1426 * Fixes bustage on Windows due to forbidden directory name
1427
1428 ## 0.0.93 — 2016-10-03
1429 * Rustup to *rustc 1.14.0-nightly (144af3e97 2016-10-02)*
1430 * `option_map_unwrap_or` and `option_map_unwrap_or_else` are now
1431   allowed by default.
1432 * New lint: [`explicit_into_iter_loop`]
1433
1434 ## 0.0.92 — 2016-09-30
1435 * Rustup to *rustc 1.14.0-nightly (289f3a4ca 2016-09-29)*
1436
1437 ## 0.0.91 — 2016-09-28
1438 * Rustup to *rustc 1.13.0-nightly (d0623cf7b 2016-09-26)*
1439
1440 ## 0.0.90 — 2016-09-09
1441 * Rustup to *rustc 1.13.0-nightly (f1f40f850 2016-09-09)*
1442
1443 ## 0.0.89 — 2016-09-06
1444 * Rustup to *rustc 1.13.0-nightly (cbe4de78e 2016-09-05)*
1445
1446 ## 0.0.88 — 2016-09-04
1447 * Rustup to *rustc 1.13.0-nightly (70598e04f 2016-09-03)*
1448 * The following lints are not new but were only usable through the `clippy`
1449   lint groups: [`filter_next`], `for_loop_over_option`,
1450   `for_loop_over_result` and [`match_overlapping_arm`]. You should now be
1451   able to `#[allow/deny]` them individually and they are available directly
1452   through `cargo clippy`.
1453
1454 ## 0.0.87 — 2016-08-31
1455 * Rustup to *rustc 1.13.0-nightly (eac41469d 2016-08-30)*
1456 * New lints: [`builtin_type_shadow`]
1457 * Fix FP in [`zero_prefixed_literal`] and `0b`/`0o`
1458
1459 ## 0.0.86 — 2016-08-28
1460 * Rustup to *rustc 1.13.0-nightly (a23064af5 2016-08-27)*
1461 * New lints: [`missing_docs_in_private_items`], [`zero_prefixed_literal`]
1462
1463 ## 0.0.85 — 2016-08-19
1464 * Fix ICE with [`useless_attribute`]
1465 * [`useless_attribute`] ignores `unused_imports` on `use` statements
1466
1467 ## 0.0.84 — 2016-08-18
1468 * Rustup to *rustc 1.13.0-nightly (aef6971ca 2016-08-17)*
1469
1470 ## 0.0.83 — 2016-08-17
1471 * Rustup to *rustc 1.12.0-nightly (1bf5fa326 2016-08-16)*
1472 * New lints: [`print_with_newline`], [`useless_attribute`]
1473
1474 ## 0.0.82 — 2016-08-17
1475 * Rustup to *rustc 1.12.0-nightly (197be89f3 2016-08-15)*
1476 * New lint: [`module_inception`]
1477
1478 ## 0.0.81 — 2016-08-14
1479 * Rustup to *rustc 1.12.0-nightly (1deb02ea6 2016-08-12)*
1480 * New lints: [`eval_order_dependence`], [`mixed_case_hex_literals`], [`unseparated_literal_suffix`]
1481 * False positive fix in [`too_many_arguments`]
1482 * Addition of functionality to [`needless_borrow`]
1483 * Suggestions for [`clone_on_copy`]
1484 * Bug fix in [`wrong_self_convention`]
1485 * Doc improvements
1486
1487 ## 0.0.80 — 2016-07-31
1488 * Rustup to *rustc 1.12.0-nightly (1225e122f 2016-07-30)*
1489 * New lints: [`misrefactored_assign_op`], [`serde_api_misuse`]
1490
1491 ## 0.0.79 — 2016-07-10
1492 * Rustup to *rustc 1.12.0-nightly (f93aaf84c 2016-07-09)*
1493 * Major suggestions refactoring
1494
1495 ## 0.0.78 — 2016-07-02
1496 * Rustup to *rustc 1.11.0-nightly (01411937f 2016-07-01)*
1497 * New lints: [`wrong_transmute`], [`double_neg`], [`filter_map`]
1498 * For compatibility, `cargo clippy` does not defines the `clippy` feature
1499   introduced in 0.0.76 anymore
1500 * [`collapsible_if`] now considers `if let`
1501
1502 ## 0.0.77 — 2016-06-21
1503 * Rustup to *rustc 1.11.0-nightly (5522e678b 2016-06-20)*
1504 * New lints: `stutter` and [`iter_nth`]
1505
1506 ## 0.0.76 — 2016-06-10
1507 * Rustup to *rustc 1.11.0-nightly (7d2f75a95 2016-06-09)*
1508 * `cargo clippy` now automatically defines the `clippy` feature
1509 * New lint: [`not_unsafe_ptr_arg_deref`]
1510
1511 ## 0.0.75 — 2016-06-08
1512 * Rustup to *rustc 1.11.0-nightly (763f9234b 2016-06-06)*
1513
1514 ## 0.0.74 — 2016-06-07
1515 * Fix bug with `cargo-clippy` JSON parsing
1516 * Add the `CLIPPY_DISABLE_DOCS_LINKS` environment variable to deactivate the
1517   “for further information visit *lint-link*” message.
1518
1519 ## 0.0.73 — 2016-06-05
1520 * Fix false positives in [`useless_let_if_seq`]
1521
1522 ## 0.0.72 — 2016-06-04
1523 * Fix false positives in [`useless_let_if_seq`]
1524
1525 ## 0.0.71 — 2016-05-31
1526 * Rustup to *rustc 1.11.0-nightly (a967611d8 2016-05-30)*
1527 * New lint: [`useless_let_if_seq`]
1528
1529 ## 0.0.70 — 2016-05-28
1530 * Rustup to *rustc 1.10.0-nightly (7bddce693 2016-05-27)*
1531 * [`invalid_regex`] and [`trivial_regex`] can now warn on `RegexSet::new`,
1532   `RegexBuilder::new` and byte regexes
1533
1534 ## 0.0.69 — 2016-05-20
1535 * Rustup to *rustc 1.10.0-nightly (476fe6eef 2016-05-21)*
1536 * [`used_underscore_binding`] has been made `Allow` temporarily
1537
1538 ## 0.0.68 — 2016-05-17
1539 * Rustup to *rustc 1.10.0-nightly (cd6a40017 2016-05-16)*
1540 * New lint: [`unnecessary_operation`]
1541
1542 ## 0.0.67 — 2016-05-12
1543 * Rustup to *rustc 1.10.0-nightly (22ac88f1a 2016-05-11)*
1544
1545 ## 0.0.66 — 2016-05-11
1546 * New `cargo clippy` subcommand
1547 * New lints: [`assign_op_pattern`], [`assign_ops`], [`needless_borrow`]
1548
1549 ## 0.0.65 — 2016-05-08
1550 * Rustup to *rustc 1.10.0-nightly (62e2b2fb7 2016-05-06)*
1551 * New lints: [`float_arithmetic`], [`integer_arithmetic`]
1552
1553 ## 0.0.64 — 2016-04-26
1554 * Rustup to *rustc 1.10.0-nightly (645dd013a 2016-04-24)*
1555 * New lints: [`temporary_cstring_as_ptr`], [`unsafe_removed_from_name`], and [`mem_forget`]
1556
1557 ## 0.0.63 — 2016-04-08
1558 * Rustup to *rustc 1.9.0-nightly (7979dd608 2016-04-07)*
1559
1560 ## 0.0.62 — 2016-04-07
1561 * Rustup to *rustc 1.9.0-nightly (bf5da36f1 2016-04-06)*
1562
1563 ## 0.0.61 — 2016-04-03
1564 * Rustup to *rustc 1.9.0-nightly (5ab11d72c 2016-04-02)*
1565 * New lint: [`invalid_upcast_comparisons`]
1566
1567 ## 0.0.60 — 2016-04-01
1568 * Rustup to *rustc 1.9.0-nightly (e1195c24b 2016-03-31)*
1569
1570 ## 0.0.59 — 2016-03-31
1571 * Rustup to *rustc 1.9.0-nightly (30a3849f2 2016-03-30)*
1572 * New lints: [`logic_bug`], [`nonminimal_bool`]
1573 * Fixed: [`match_same_arms`] now ignores arms with guards
1574 * Improved: [`useless_vec`] now warns on `for … in vec![…]`
1575
1576 ## 0.0.58 — 2016-03-27
1577 * Rustup to *rustc 1.9.0-nightly (d5a91e695 2016-03-26)*
1578 * New lint: [`doc_markdown`]
1579
1580 ## 0.0.57 — 2016-03-27
1581 * Update to *rustc 1.9.0-nightly (a1e29daf1 2016-03-25)*
1582 * Deprecated lints: [`str_to_string`], [`string_to_string`], [`unstable_as_slice`], [`unstable_as_mut_slice`]
1583 * New lint: [`crosspointer_transmute`]
1584
1585 ## 0.0.56 — 2016-03-23
1586 * Update to *rustc 1.9.0-nightly (0dcc413e4 2016-03-22)*
1587 * New lints: [`many_single_char_names`] and [`similar_names`]
1588
1589 ## 0.0.55 — 2016-03-21
1590 * Update to *rustc 1.9.0-nightly (02310fd31 2016-03-19)*
1591
1592 ## 0.0.54 — 2016-03-16
1593 * Update to *rustc 1.9.0-nightly (c66d2380a 2016-03-15)*
1594
1595 ## 0.0.53 — 2016-03-15
1596 * Add a [configuration file]
1597
1598 ## ~~0.0.52~~
1599
1600 ## 0.0.51 — 2016-03-13
1601 * Add `str` to types considered by [`len_zero`]
1602 * New lints: [`indexing_slicing`]
1603
1604 ## 0.0.50 — 2016-03-11
1605 * Update to *rustc 1.9.0-nightly (c9629d61c 2016-03-10)*
1606
1607 ## 0.0.49 — 2016-03-09
1608 * Update to *rustc 1.9.0-nightly (eabfc160f 2016-03-08)*
1609 * New lints: [`overflow_check_conditional`], [`unused_label`], [`new_without_default`]
1610
1611 ## 0.0.48 — 2016-03-07
1612 * Fixed: ICE in [`needless_range_loop`] with globals
1613
1614 ## 0.0.47 — 2016-03-07
1615 * Update to *rustc 1.9.0-nightly (998a6720b 2016-03-07)*
1616 * New lint: [`redundant_closure_call`]
1617
1618 [`AsMut`]: https://doc.rust-lang.org/std/convert/trait.AsMut.html
1619 [`AsRef`]: https://doc.rust-lang.org/std/convert/trait.AsRef.html
1620 [configuration file]: ./rust-clippy#configuration
1621 [pull3665]: https://github.com/rust-lang/rust-clippy/pull/3665
1622 [adding_lints]: https://github.com/rust-lang/rust-clippy/blob/master/doc/adding_lints.md
1623
1624 <!-- lint disable no-unused-definitions -->
1625 <!-- begin autogenerated links to lint list -->
1626 [`absurd_extreme_comparisons`]: https://rust-lang.github.io/rust-clippy/master/index.html#absurd_extreme_comparisons
1627 [`almost_swapped`]: https://rust-lang.github.io/rust-clippy/master/index.html#almost_swapped
1628 [`approx_constant`]: https://rust-lang.github.io/rust-clippy/master/index.html#approx_constant
1629 [`as_conversions`]: https://rust-lang.github.io/rust-clippy/master/index.html#as_conversions
1630 [`assertions_on_constants`]: https://rust-lang.github.io/rust-clippy/master/index.html#assertions_on_constants
1631 [`assign_op_pattern`]: https://rust-lang.github.io/rust-clippy/master/index.html#assign_op_pattern
1632 [`assign_ops`]: https://rust-lang.github.io/rust-clippy/master/index.html#assign_ops
1633 [`async_yields_async`]: https://rust-lang.github.io/rust-clippy/master/index.html#async_yields_async
1634 [`await_holding_lock`]: https://rust-lang.github.io/rust-clippy/master/index.html#await_holding_lock
1635 [`await_holding_refcell_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#await_holding_refcell_ref
1636 [`bad_bit_mask`]: https://rust-lang.github.io/rust-clippy/master/index.html#bad_bit_mask
1637 [`bind_instead_of_map`]: https://rust-lang.github.io/rust-clippy/master/index.html#bind_instead_of_map
1638 [`blacklisted_name`]: https://rust-lang.github.io/rust-clippy/master/index.html#blacklisted_name
1639 [`blanket_clippy_restriction_lints`]: https://rust-lang.github.io/rust-clippy/master/index.html#blanket_clippy_restriction_lints
1640 [`blocks_in_if_conditions`]: https://rust-lang.github.io/rust-clippy/master/index.html#blocks_in_if_conditions
1641 [`bool_comparison`]: https://rust-lang.github.io/rust-clippy/master/index.html#bool_comparison
1642 [`borrow_interior_mutable_const`]: https://rust-lang.github.io/rust-clippy/master/index.html#borrow_interior_mutable_const
1643 [`borrowed_box`]: https://rust-lang.github.io/rust-clippy/master/index.html#borrowed_box
1644 [`box_vec`]: https://rust-lang.github.io/rust-clippy/master/index.html#box_vec
1645 [`boxed_local`]: https://rust-lang.github.io/rust-clippy/master/index.html#boxed_local
1646 [`builtin_type_shadow`]: https://rust-lang.github.io/rust-clippy/master/index.html#builtin_type_shadow
1647 [`cargo_common_metadata`]: https://rust-lang.github.io/rust-clippy/master/index.html#cargo_common_metadata
1648 [`cast_lossless`]: https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless
1649 [`cast_possible_truncation`]: https://rust-lang.github.io/rust-clippy/master/index.html#cast_possible_truncation
1650 [`cast_possible_wrap`]: https://rust-lang.github.io/rust-clippy/master/index.html#cast_possible_wrap
1651 [`cast_precision_loss`]: https://rust-lang.github.io/rust-clippy/master/index.html#cast_precision_loss
1652 [`cast_ptr_alignment`]: https://rust-lang.github.io/rust-clippy/master/index.html#cast_ptr_alignment
1653 [`cast_ref_to_mut`]: https://rust-lang.github.io/rust-clippy/master/index.html#cast_ref_to_mut
1654 [`cast_sign_loss`]: https://rust-lang.github.io/rust-clippy/master/index.html#cast_sign_loss
1655 [`char_lit_as_u8`]: https://rust-lang.github.io/rust-clippy/master/index.html#char_lit_as_u8
1656 [`chars_last_cmp`]: https://rust-lang.github.io/rust-clippy/master/index.html#chars_last_cmp
1657 [`chars_next_cmp`]: https://rust-lang.github.io/rust-clippy/master/index.html#chars_next_cmp
1658 [`checked_conversions`]: https://rust-lang.github.io/rust-clippy/master/index.html#checked_conversions
1659 [`clone_double_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#clone_double_ref
1660 [`clone_on_copy`]: https://rust-lang.github.io/rust-clippy/master/index.html#clone_on_copy
1661 [`clone_on_ref_ptr`]: https://rust-lang.github.io/rust-clippy/master/index.html#clone_on_ref_ptr
1662 [`cmp_nan`]: https://rust-lang.github.io/rust-clippy/master/index.html#cmp_nan
1663 [`cmp_null`]: https://rust-lang.github.io/rust-clippy/master/index.html#cmp_null
1664 [`cmp_owned`]: https://rust-lang.github.io/rust-clippy/master/index.html#cmp_owned
1665 [`cognitive_complexity`]: https://rust-lang.github.io/rust-clippy/master/index.html#cognitive_complexity
1666 [`collapsible_if`]: https://rust-lang.github.io/rust-clippy/master/index.html#collapsible_if
1667 [`comparison_chain`]: https://rust-lang.github.io/rust-clippy/master/index.html#comparison_chain
1668 [`comparison_to_empty`]: https://rust-lang.github.io/rust-clippy/master/index.html#comparison_to_empty
1669 [`copy_iterator`]: https://rust-lang.github.io/rust-clippy/master/index.html#copy_iterator
1670 [`create_dir`]: https://rust-lang.github.io/rust-clippy/master/index.html#create_dir
1671 [`crosspointer_transmute`]: https://rust-lang.github.io/rust-clippy/master/index.html#crosspointer_transmute
1672 [`dbg_macro`]: https://rust-lang.github.io/rust-clippy/master/index.html#dbg_macro
1673 [`debug_assert_with_mut_call`]: https://rust-lang.github.io/rust-clippy/master/index.html#debug_assert_with_mut_call
1674 [`decimal_literal_representation`]: https://rust-lang.github.io/rust-clippy/master/index.html#decimal_literal_representation
1675 [`declare_interior_mutable_const`]: https://rust-lang.github.io/rust-clippy/master/index.html#declare_interior_mutable_const
1676 [`default_trait_access`]: https://rust-lang.github.io/rust-clippy/master/index.html#default_trait_access
1677 [`deprecated_cfg_attr`]: https://rust-lang.github.io/rust-clippy/master/index.html#deprecated_cfg_attr
1678 [`deprecated_semver`]: https://rust-lang.github.io/rust-clippy/master/index.html#deprecated_semver
1679 [`deref_addrof`]: https://rust-lang.github.io/rust-clippy/master/index.html#deref_addrof
1680 [`derive_hash_xor_eq`]: https://rust-lang.github.io/rust-clippy/master/index.html#derive_hash_xor_eq
1681 [`derive_ord_xor_partial_ord`]: https://rust-lang.github.io/rust-clippy/master/index.html#derive_ord_xor_partial_ord
1682 [`disallowed_method`]: https://rust-lang.github.io/rust-clippy/master/index.html#disallowed_method
1683 [`diverging_sub_expression`]: https://rust-lang.github.io/rust-clippy/master/index.html#diverging_sub_expression
1684 [`doc_markdown`]: https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown
1685 [`double_comparisons`]: https://rust-lang.github.io/rust-clippy/master/index.html#double_comparisons
1686 [`double_must_use`]: https://rust-lang.github.io/rust-clippy/master/index.html#double_must_use
1687 [`double_neg`]: https://rust-lang.github.io/rust-clippy/master/index.html#double_neg
1688 [`double_parens`]: https://rust-lang.github.io/rust-clippy/master/index.html#double_parens
1689 [`drop_bounds`]: https://rust-lang.github.io/rust-clippy/master/index.html#drop_bounds
1690 [`drop_copy`]: https://rust-lang.github.io/rust-clippy/master/index.html#drop_copy
1691 [`drop_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#drop_ref
1692 [`duplicate_underscore_argument`]: https://rust-lang.github.io/rust-clippy/master/index.html#duplicate_underscore_argument
1693 [`duration_subsec`]: https://rust-lang.github.io/rust-clippy/master/index.html#duration_subsec
1694 [`else_if_without_else`]: https://rust-lang.github.io/rust-clippy/master/index.html#else_if_without_else
1695 [`empty_enum`]: https://rust-lang.github.io/rust-clippy/master/index.html#empty_enum
1696 [`empty_line_after_outer_attr`]: https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_outer_attr
1697 [`empty_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#empty_loop
1698 [`enum_clike_unportable_variant`]: https://rust-lang.github.io/rust-clippy/master/index.html#enum_clike_unportable_variant
1699 [`enum_glob_use`]: https://rust-lang.github.io/rust-clippy/master/index.html#enum_glob_use
1700 [`enum_variant_names`]: https://rust-lang.github.io/rust-clippy/master/index.html#enum_variant_names
1701 [`eq_op`]: https://rust-lang.github.io/rust-clippy/master/index.html#eq_op
1702 [`erasing_op`]: https://rust-lang.github.io/rust-clippy/master/index.html#erasing_op
1703 [`eval_order_dependence`]: https://rust-lang.github.io/rust-clippy/master/index.html#eval_order_dependence
1704 [`excessive_precision`]: https://rust-lang.github.io/rust-clippy/master/index.html#excessive_precision
1705 [`exit`]: https://rust-lang.github.io/rust-clippy/master/index.html#exit
1706 [`expect_fun_call`]: https://rust-lang.github.io/rust-clippy/master/index.html#expect_fun_call
1707 [`expect_used`]: https://rust-lang.github.io/rust-clippy/master/index.html#expect_used
1708 [`expl_impl_clone_on_copy`]: https://rust-lang.github.io/rust-clippy/master/index.html#expl_impl_clone_on_copy
1709 [`explicit_counter_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#explicit_counter_loop
1710 [`explicit_deref_methods`]: https://rust-lang.github.io/rust-clippy/master/index.html#explicit_deref_methods
1711 [`explicit_into_iter_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#explicit_into_iter_loop
1712 [`explicit_iter_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#explicit_iter_loop
1713 [`explicit_write`]: https://rust-lang.github.io/rust-clippy/master/index.html#explicit_write
1714 [`extend_from_slice`]: https://rust-lang.github.io/rust-clippy/master/index.html#extend_from_slice
1715 [`extra_unused_lifetimes`]: https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_lifetimes
1716 [`fallible_impl_from`]: https://rust-lang.github.io/rust-clippy/master/index.html#fallible_impl_from
1717 [`field_reassign_with_default`]: https://rust-lang.github.io/rust-clippy/master/index.html#field_reassign_with_default
1718 [`filetype_is_file`]: https://rust-lang.github.io/rust-clippy/master/index.html#filetype_is_file
1719 [`filter_map`]: https://rust-lang.github.io/rust-clippy/master/index.html#filter_map
1720 [`filter_map_next`]: https://rust-lang.github.io/rust-clippy/master/index.html#filter_map_next
1721 [`filter_next`]: https://rust-lang.github.io/rust-clippy/master/index.html#filter_next
1722 [`find_map`]: https://rust-lang.github.io/rust-clippy/master/index.html#find_map
1723 [`flat_map_identity`]: https://rust-lang.github.io/rust-clippy/master/index.html#flat_map_identity
1724 [`float_arithmetic`]: https://rust-lang.github.io/rust-clippy/master/index.html#float_arithmetic
1725 [`float_cmp`]: https://rust-lang.github.io/rust-clippy/master/index.html#float_cmp
1726 [`float_cmp_const`]: https://rust-lang.github.io/rust-clippy/master/index.html#float_cmp_const
1727 [`float_equality_without_abs`]: https://rust-lang.github.io/rust-clippy/master/index.html#float_equality_without_abs
1728 [`fn_address_comparisons`]: https://rust-lang.github.io/rust-clippy/master/index.html#fn_address_comparisons
1729 [`fn_params_excessive_bools`]: https://rust-lang.github.io/rust-clippy/master/index.html#fn_params_excessive_bools
1730 [`fn_to_numeric_cast`]: https://rust-lang.github.io/rust-clippy/master/index.html#fn_to_numeric_cast
1731 [`fn_to_numeric_cast_with_truncation`]: https://rust-lang.github.io/rust-clippy/master/index.html#fn_to_numeric_cast_with_truncation
1732 [`for_kv_map`]: https://rust-lang.github.io/rust-clippy/master/index.html#for_kv_map
1733 [`for_loops_over_fallibles`]: https://rust-lang.github.io/rust-clippy/master/index.html#for_loops_over_fallibles
1734 [`forget_copy`]: https://rust-lang.github.io/rust-clippy/master/index.html#forget_copy
1735 [`forget_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#forget_ref
1736 [`from_iter_instead_of_collect`]: https://rust-lang.github.io/rust-clippy/master/index.html#from_iter_instead_of_collect
1737 [`future_not_send`]: https://rust-lang.github.io/rust-clippy/master/index.html#future_not_send
1738 [`get_last_with_len`]: https://rust-lang.github.io/rust-clippy/master/index.html#get_last_with_len
1739 [`get_unwrap`]: https://rust-lang.github.io/rust-clippy/master/index.html#get_unwrap
1740 [`identity_op`]: https://rust-lang.github.io/rust-clippy/master/index.html#identity_op
1741 [`if_let_mutex`]: https://rust-lang.github.io/rust-clippy/master/index.html#if_let_mutex
1742 [`if_let_redundant_pattern_matching`]: https://rust-lang.github.io/rust-clippy/master/index.html#if_let_redundant_pattern_matching
1743 [`if_let_some_result`]: https://rust-lang.github.io/rust-clippy/master/index.html#if_let_some_result
1744 [`if_not_else`]: https://rust-lang.github.io/rust-clippy/master/index.html#if_not_else
1745 [`if_same_then_else`]: https://rust-lang.github.io/rust-clippy/master/index.html#if_same_then_else
1746 [`ifs_same_cond`]: https://rust-lang.github.io/rust-clippy/master/index.html#ifs_same_cond
1747 [`implicit_hasher`]: https://rust-lang.github.io/rust-clippy/master/index.html#implicit_hasher
1748 [`implicit_return`]: https://rust-lang.github.io/rust-clippy/master/index.html#implicit_return
1749 [`implicit_saturating_sub`]: https://rust-lang.github.io/rust-clippy/master/index.html#implicit_saturating_sub
1750 [`imprecise_flops`]: https://rust-lang.github.io/rust-clippy/master/index.html#imprecise_flops
1751 [`inconsistent_digit_grouping`]: https://rust-lang.github.io/rust-clippy/master/index.html#inconsistent_digit_grouping
1752 [`indexing_slicing`]: https://rust-lang.github.io/rust-clippy/master/index.html#indexing_slicing
1753 [`ineffective_bit_mask`]: https://rust-lang.github.io/rust-clippy/master/index.html#ineffective_bit_mask
1754 [`inefficient_to_string`]: https://rust-lang.github.io/rust-clippy/master/index.html#inefficient_to_string
1755 [`infallible_destructuring_match`]: https://rust-lang.github.io/rust-clippy/master/index.html#infallible_destructuring_match
1756 [`infinite_iter`]: https://rust-lang.github.io/rust-clippy/master/index.html#infinite_iter
1757 [`inherent_to_string`]: https://rust-lang.github.io/rust-clippy/master/index.html#inherent_to_string
1758 [`inherent_to_string_shadow_display`]: https://rust-lang.github.io/rust-clippy/master/index.html#inherent_to_string_shadow_display
1759 [`inline_always`]: https://rust-lang.github.io/rust-clippy/master/index.html#inline_always
1760 [`inline_asm_x86_att_syntax`]: https://rust-lang.github.io/rust-clippy/master/index.html#inline_asm_x86_att_syntax
1761 [`inline_asm_x86_intel_syntax`]: https://rust-lang.github.io/rust-clippy/master/index.html#inline_asm_x86_intel_syntax
1762 [`inline_fn_without_body`]: https://rust-lang.github.io/rust-clippy/master/index.html#inline_fn_without_body
1763 [`int_plus_one`]: https://rust-lang.github.io/rust-clippy/master/index.html#int_plus_one
1764 [`integer_arithmetic`]: https://rust-lang.github.io/rust-clippy/master/index.html#integer_arithmetic
1765 [`integer_division`]: https://rust-lang.github.io/rust-clippy/master/index.html#integer_division
1766 [`into_iter_on_array`]: https://rust-lang.github.io/rust-clippy/master/index.html#into_iter_on_array
1767 [`into_iter_on_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#into_iter_on_ref
1768 [`invalid_atomic_ordering`]: https://rust-lang.github.io/rust-clippy/master/index.html#invalid_atomic_ordering
1769 [`invalid_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#invalid_ref
1770 [`invalid_regex`]: https://rust-lang.github.io/rust-clippy/master/index.html#invalid_regex
1771 [`invalid_upcast_comparisons`]: https://rust-lang.github.io/rust-clippy/master/index.html#invalid_upcast_comparisons
1772 [`invisible_characters`]: https://rust-lang.github.io/rust-clippy/master/index.html#invisible_characters
1773 [`items_after_statements`]: https://rust-lang.github.io/rust-clippy/master/index.html#items_after_statements
1774 [`iter_cloned_collect`]: https://rust-lang.github.io/rust-clippy/master/index.html#iter_cloned_collect
1775 [`iter_next_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#iter_next_loop
1776 [`iter_next_slice`]: https://rust-lang.github.io/rust-clippy/master/index.html#iter_next_slice
1777 [`iter_nth`]: https://rust-lang.github.io/rust-clippy/master/index.html#iter_nth
1778 [`iter_nth_zero`]: https://rust-lang.github.io/rust-clippy/master/index.html#iter_nth_zero
1779 [`iter_skip_next`]: https://rust-lang.github.io/rust-clippy/master/index.html#iter_skip_next
1780 [`iterator_step_by_zero`]: https://rust-lang.github.io/rust-clippy/master/index.html#iterator_step_by_zero
1781 [`just_underscores_and_digits`]: https://rust-lang.github.io/rust-clippy/master/index.html#just_underscores_and_digits
1782 [`large_const_arrays`]: https://rust-lang.github.io/rust-clippy/master/index.html#large_const_arrays
1783 [`large_digit_groups`]: https://rust-lang.github.io/rust-clippy/master/index.html#large_digit_groups
1784 [`large_enum_variant`]: https://rust-lang.github.io/rust-clippy/master/index.html#large_enum_variant
1785 [`large_stack_arrays`]: https://rust-lang.github.io/rust-clippy/master/index.html#large_stack_arrays
1786 [`large_types_passed_by_value`]: https://rust-lang.github.io/rust-clippy/master/index.html#large_types_passed_by_value
1787 [`len_without_is_empty`]: https://rust-lang.github.io/rust-clippy/master/index.html#len_without_is_empty
1788 [`len_zero`]: https://rust-lang.github.io/rust-clippy/master/index.html#len_zero
1789 [`let_and_return`]: https://rust-lang.github.io/rust-clippy/master/index.html#let_and_return
1790 [`let_underscore_lock`]: https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_lock
1791 [`let_underscore_must_use`]: https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_must_use
1792 [`let_unit_value`]: https://rust-lang.github.io/rust-clippy/master/index.html#let_unit_value
1793 [`linkedlist`]: https://rust-lang.github.io/rust-clippy/master/index.html#linkedlist
1794 [`logic_bug`]: https://rust-lang.github.io/rust-clippy/master/index.html#logic_bug
1795 [`lossy_float_literal`]: https://rust-lang.github.io/rust-clippy/master/index.html#lossy_float_literal
1796 [`macro_use_imports`]: https://rust-lang.github.io/rust-clippy/master/index.html#macro_use_imports
1797 [`main_recursion`]: https://rust-lang.github.io/rust-clippy/master/index.html#main_recursion
1798 [`manual_async_fn`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_async_fn
1799 [`manual_memcpy`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_memcpy
1800 [`manual_non_exhaustive`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_non_exhaustive
1801 [`manual_ok_or`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_ok_or
1802 [`manual_range_contains`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_range_contains
1803 [`manual_saturating_arithmetic`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_saturating_arithmetic
1804 [`manual_strip`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_strip
1805 [`manual_swap`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_swap
1806 [`manual_unwrap_or`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_unwrap_or
1807 [`many_single_char_names`]: https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names
1808 [`map_clone`]: https://rust-lang.github.io/rust-clippy/master/index.html#map_clone
1809 [`map_collect_result_unit`]: https://rust-lang.github.io/rust-clippy/master/index.html#map_collect_result_unit
1810 [`map_entry`]: https://rust-lang.github.io/rust-clippy/master/index.html#map_entry
1811 [`map_err_ignore`]: https://rust-lang.github.io/rust-clippy/master/index.html#map_err_ignore
1812 [`map_flatten`]: https://rust-lang.github.io/rust-clippy/master/index.html#map_flatten
1813 [`map_identity`]: https://rust-lang.github.io/rust-clippy/master/index.html#map_identity
1814 [`map_unwrap_or`]: https://rust-lang.github.io/rust-clippy/master/index.html#map_unwrap_or
1815 [`match_as_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#match_as_ref
1816 [`match_bool`]: https://rust-lang.github.io/rust-clippy/master/index.html#match_bool
1817 [`match_like_matches_macro`]: https://rust-lang.github.io/rust-clippy/master/index.html#match_like_matches_macro
1818 [`match_on_vec_items`]: https://rust-lang.github.io/rust-clippy/master/index.html#match_on_vec_items
1819 [`match_overlapping_arm`]: https://rust-lang.github.io/rust-clippy/master/index.html#match_overlapping_arm
1820 [`match_ref_pats`]: https://rust-lang.github.io/rust-clippy/master/index.html#match_ref_pats
1821 [`match_same_arms`]: https://rust-lang.github.io/rust-clippy/master/index.html#match_same_arms
1822 [`match_single_binding`]: https://rust-lang.github.io/rust-clippy/master/index.html#match_single_binding
1823 [`match_wild_err_arm`]: https://rust-lang.github.io/rust-clippy/master/index.html#match_wild_err_arm
1824 [`match_wildcard_for_single_variants`]: https://rust-lang.github.io/rust-clippy/master/index.html#match_wildcard_for_single_variants
1825 [`maybe_infinite_iter`]: https://rust-lang.github.io/rust-clippy/master/index.html#maybe_infinite_iter
1826 [`mem_discriminant_non_enum`]: https://rust-lang.github.io/rust-clippy/master/index.html#mem_discriminant_non_enum
1827 [`mem_forget`]: https://rust-lang.github.io/rust-clippy/master/index.html#mem_forget
1828 [`mem_replace_option_with_none`]: https://rust-lang.github.io/rust-clippy/master/index.html#mem_replace_option_with_none
1829 [`mem_replace_with_default`]: https://rust-lang.github.io/rust-clippy/master/index.html#mem_replace_with_default
1830 [`mem_replace_with_uninit`]: https://rust-lang.github.io/rust-clippy/master/index.html#mem_replace_with_uninit
1831 [`min_max`]: https://rust-lang.github.io/rust-clippy/master/index.html#min_max
1832 [`misaligned_transmute`]: https://rust-lang.github.io/rust-clippy/master/index.html#misaligned_transmute
1833 [`mismatched_target_os`]: https://rust-lang.github.io/rust-clippy/master/index.html#mismatched_target_os
1834 [`misrefactored_assign_op`]: https://rust-lang.github.io/rust-clippy/master/index.html#misrefactored_assign_op
1835 [`missing_const_for_fn`]: https://rust-lang.github.io/rust-clippy/master/index.html#missing_const_for_fn
1836 [`missing_docs_in_private_items`]: https://rust-lang.github.io/rust-clippy/master/index.html#missing_docs_in_private_items
1837 [`missing_errors_doc`]: https://rust-lang.github.io/rust-clippy/master/index.html#missing_errors_doc
1838 [`missing_inline_in_public_items`]: https://rust-lang.github.io/rust-clippy/master/index.html#missing_inline_in_public_items
1839 [`missing_safety_doc`]: https://rust-lang.github.io/rust-clippy/master/index.html#missing_safety_doc
1840 [`mistyped_literal_suffixes`]: https://rust-lang.github.io/rust-clippy/master/index.html#mistyped_literal_suffixes
1841 [`mixed_case_hex_literals`]: https://rust-lang.github.io/rust-clippy/master/index.html#mixed_case_hex_literals
1842 [`module_inception`]: https://rust-lang.github.io/rust-clippy/master/index.html#module_inception
1843 [`module_name_repetitions`]: https://rust-lang.github.io/rust-clippy/master/index.html#module_name_repetitions
1844 [`modulo_arithmetic`]: https://rust-lang.github.io/rust-clippy/master/index.html#modulo_arithmetic
1845 [`modulo_one`]: https://rust-lang.github.io/rust-clippy/master/index.html#modulo_one
1846 [`multiple_crate_versions`]: https://rust-lang.github.io/rust-clippy/master/index.html#multiple_crate_versions
1847 [`multiple_inherent_impl`]: https://rust-lang.github.io/rust-clippy/master/index.html#multiple_inherent_impl
1848 [`must_use_candidate`]: https://rust-lang.github.io/rust-clippy/master/index.html#must_use_candidate
1849 [`must_use_unit`]: https://rust-lang.github.io/rust-clippy/master/index.html#must_use_unit
1850 [`mut_from_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#mut_from_ref
1851 [`mut_mut`]: https://rust-lang.github.io/rust-clippy/master/index.html#mut_mut
1852 [`mut_mutex_lock`]: https://rust-lang.github.io/rust-clippy/master/index.html#mut_mutex_lock
1853 [`mut_range_bound`]: https://rust-lang.github.io/rust-clippy/master/index.html#mut_range_bound
1854 [`mutable_key_type`]: https://rust-lang.github.io/rust-clippy/master/index.html#mutable_key_type
1855 [`mutex_atomic`]: https://rust-lang.github.io/rust-clippy/master/index.html#mutex_atomic
1856 [`mutex_integer`]: https://rust-lang.github.io/rust-clippy/master/index.html#mutex_integer
1857 [`naive_bytecount`]: https://rust-lang.github.io/rust-clippy/master/index.html#naive_bytecount
1858 [`needless_arbitrary_self_type`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_arbitrary_self_type
1859 [`needless_bool`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_bool
1860 [`needless_borrow`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
1861 [`needless_borrowed_reference`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrowed_reference
1862 [`needless_collect`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_collect
1863 [`needless_continue`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_continue
1864 [`needless_doctest_main`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_doctest_main
1865 [`needless_lifetimes`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
1866 [`needless_pass_by_value`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_pass_by_value
1867 [`needless_range_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_range_loop
1868 [`needless_return`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
1869 [`needless_update`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_update
1870 [`neg_cmp_op_on_partial_ord`]: https://rust-lang.github.io/rust-clippy/master/index.html#neg_cmp_op_on_partial_ord
1871 [`neg_multiply`]: https://rust-lang.github.io/rust-clippy/master/index.html#neg_multiply
1872 [`never_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#never_loop
1873 [`new_ret_no_self`]: https://rust-lang.github.io/rust-clippy/master/index.html#new_ret_no_self
1874 [`new_without_default`]: https://rust-lang.github.io/rust-clippy/master/index.html#new_without_default
1875 [`no_effect`]: https://rust-lang.github.io/rust-clippy/master/index.html#no_effect
1876 [`non_ascii_literal`]: https://rust-lang.github.io/rust-clippy/master/index.html#non_ascii_literal
1877 [`nonminimal_bool`]: https://rust-lang.github.io/rust-clippy/master/index.html#nonminimal_bool
1878 [`nonsensical_open_options`]: https://rust-lang.github.io/rust-clippy/master/index.html#nonsensical_open_options
1879 [`not_unsafe_ptr_arg_deref`]: https://rust-lang.github.io/rust-clippy/master/index.html#not_unsafe_ptr_arg_deref
1880 [`ok_expect`]: https://rust-lang.github.io/rust-clippy/master/index.html#ok_expect
1881 [`op_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#op_ref
1882 [`option_as_ref_deref`]: https://rust-lang.github.io/rust-clippy/master/index.html#option_as_ref_deref
1883 [`option_env_unwrap`]: https://rust-lang.github.io/rust-clippy/master/index.html#option_env_unwrap
1884 [`option_if_let_else`]: https://rust-lang.github.io/rust-clippy/master/index.html#option_if_let_else
1885 [`option_map_or_none`]: https://rust-lang.github.io/rust-clippy/master/index.html#option_map_or_none
1886 [`option_map_unit_fn`]: https://rust-lang.github.io/rust-clippy/master/index.html#option_map_unit_fn
1887 [`option_option`]: https://rust-lang.github.io/rust-clippy/master/index.html#option_option
1888 [`or_fun_call`]: https://rust-lang.github.io/rust-clippy/master/index.html#or_fun_call
1889 [`out_of_bounds_indexing`]: https://rust-lang.github.io/rust-clippy/master/index.html#out_of_bounds_indexing
1890 [`overflow_check_conditional`]: https://rust-lang.github.io/rust-clippy/master/index.html#overflow_check_conditional
1891 [`panic`]: https://rust-lang.github.io/rust-clippy/master/index.html#panic
1892 [`panic_in_result_fn`]: https://rust-lang.github.io/rust-clippy/master/index.html#panic_in_result_fn
1893 [`panic_params`]: https://rust-lang.github.io/rust-clippy/master/index.html#panic_params
1894 [`panicking_unwrap`]: https://rust-lang.github.io/rust-clippy/master/index.html#panicking_unwrap
1895 [`partialeq_ne_impl`]: https://rust-lang.github.io/rust-clippy/master/index.html#partialeq_ne_impl
1896 [`path_buf_push_overwrite`]: https://rust-lang.github.io/rust-clippy/master/index.html#path_buf_push_overwrite
1897 [`pattern_type_mismatch`]: https://rust-lang.github.io/rust-clippy/master/index.html#pattern_type_mismatch
1898 [`possible_missing_comma`]: https://rust-lang.github.io/rust-clippy/master/index.html#possible_missing_comma
1899 [`precedence`]: https://rust-lang.github.io/rust-clippy/master/index.html#precedence
1900 [`print_literal`]: https://rust-lang.github.io/rust-clippy/master/index.html#print_literal
1901 [`print_stdout`]: https://rust-lang.github.io/rust-clippy/master/index.html#print_stdout
1902 [`print_with_newline`]: https://rust-lang.github.io/rust-clippy/master/index.html#print_with_newline
1903 [`println_empty_string`]: https://rust-lang.github.io/rust-clippy/master/index.html#println_empty_string
1904 [`ptr_arg`]: https://rust-lang.github.io/rust-clippy/master/index.html#ptr_arg
1905 [`ptr_eq`]: https://rust-lang.github.io/rust-clippy/master/index.html#ptr_eq
1906 [`ptr_offset_with_cast`]: https://rust-lang.github.io/rust-clippy/master/index.html#ptr_offset_with_cast
1907 [`pub_enum_variant_names`]: https://rust-lang.github.io/rust-clippy/master/index.html#pub_enum_variant_names
1908 [`question_mark`]: https://rust-lang.github.io/rust-clippy/master/index.html#question_mark
1909 [`range_minus_one`]: https://rust-lang.github.io/rust-clippy/master/index.html#range_minus_one
1910 [`range_plus_one`]: https://rust-lang.github.io/rust-clippy/master/index.html#range_plus_one
1911 [`range_step_by_zero`]: https://rust-lang.github.io/rust-clippy/master/index.html#range_step_by_zero
1912 [`range_zip_with_len`]: https://rust-lang.github.io/rust-clippy/master/index.html#range_zip_with_len
1913 [`rc_buffer`]: https://rust-lang.github.io/rust-clippy/master/index.html#rc_buffer
1914 [`redundant_allocation`]: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_allocation
1915 [`redundant_clone`]: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_clone
1916 [`redundant_closure`]: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure
1917 [`redundant_closure_call`]: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure_call
1918 [`redundant_closure_for_method_calls`]: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure_for_method_calls
1919 [`redundant_field_names`]: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names
1920 [`redundant_pattern`]: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_pattern
1921 [`redundant_pattern_matching`]: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_pattern_matching
1922 [`redundant_pub_crate`]: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_pub_crate
1923 [`redundant_static_lifetimes`]: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_static_lifetimes
1924 [`ref_in_deref`]: https://rust-lang.github.io/rust-clippy/master/index.html#ref_in_deref
1925 [`ref_option_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#ref_option_ref
1926 [`regex_macro`]: https://rust-lang.github.io/rust-clippy/master/index.html#regex_macro
1927 [`repeat_once`]: https://rust-lang.github.io/rust-clippy/master/index.html#repeat_once
1928 [`replace_consts`]: https://rust-lang.github.io/rust-clippy/master/index.html#replace_consts
1929 [`rest_pat_in_fully_bound_structs`]: https://rust-lang.github.io/rust-clippy/master/index.html#rest_pat_in_fully_bound_structs
1930 [`result_map_or_into_option`]: https://rust-lang.github.io/rust-clippy/master/index.html#result_map_or_into_option
1931 [`result_map_unit_fn`]: https://rust-lang.github.io/rust-clippy/master/index.html#result_map_unit_fn
1932 [`result_unit_err`]: https://rust-lang.github.io/rust-clippy/master/index.html#result_unit_err
1933 [`reversed_empty_ranges`]: https://rust-lang.github.io/rust-clippy/master/index.html#reversed_empty_ranges
1934 [`same_functions_in_if_condition`]: https://rust-lang.github.io/rust-clippy/master/index.html#same_functions_in_if_condition
1935 [`same_item_push`]: https://rust-lang.github.io/rust-clippy/master/index.html#same_item_push
1936 [`search_is_some`]: https://rust-lang.github.io/rust-clippy/master/index.html#search_is_some
1937 [`self_assignment`]: https://rust-lang.github.io/rust-clippy/master/index.html#self_assignment
1938 [`serde_api_misuse`]: https://rust-lang.github.io/rust-clippy/master/index.html#serde_api_misuse
1939 [`shadow_reuse`]: https://rust-lang.github.io/rust-clippy/master/index.html#shadow_reuse
1940 [`shadow_same`]: https://rust-lang.github.io/rust-clippy/master/index.html#shadow_same
1941 [`shadow_unrelated`]: https://rust-lang.github.io/rust-clippy/master/index.html#shadow_unrelated
1942 [`short_circuit_statement`]: https://rust-lang.github.io/rust-clippy/master/index.html#short_circuit_statement
1943 [`should_assert_eq`]: https://rust-lang.github.io/rust-clippy/master/index.html#should_assert_eq
1944 [`should_implement_trait`]: https://rust-lang.github.io/rust-clippy/master/index.html#should_implement_trait
1945 [`similar_names`]: https://rust-lang.github.io/rust-clippy/master/index.html#similar_names
1946 [`single_char_add_str`]: https://rust-lang.github.io/rust-clippy/master/index.html#single_char_add_str
1947 [`single_char_pattern`]: https://rust-lang.github.io/rust-clippy/master/index.html#single_char_pattern
1948 [`single_component_path_imports`]: https://rust-lang.github.io/rust-clippy/master/index.html#single_component_path_imports
1949 [`single_element_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#single_element_loop
1950 [`single_match`]: https://rust-lang.github.io/rust-clippy/master/index.html#single_match
1951 [`single_match_else`]: https://rust-lang.github.io/rust-clippy/master/index.html#single_match_else
1952 [`skip_while_next`]: https://rust-lang.github.io/rust-clippy/master/index.html#skip_while_next
1953 [`slow_vector_initialization`]: https://rust-lang.github.io/rust-clippy/master/index.html#slow_vector_initialization
1954 [`stable_sort_primitive`]: https://rust-lang.github.io/rust-clippy/master/index.html#stable_sort_primitive
1955 [`str_to_string`]: https://rust-lang.github.io/rust-clippy/master/index.html#str_to_string
1956 [`string_add`]: https://rust-lang.github.io/rust-clippy/master/index.html#string_add
1957 [`string_add_assign`]: https://rust-lang.github.io/rust-clippy/master/index.html#string_add_assign
1958 [`string_extend_chars`]: https://rust-lang.github.io/rust-clippy/master/index.html#string_extend_chars
1959 [`string_lit_as_bytes`]: https://rust-lang.github.io/rust-clippy/master/index.html#string_lit_as_bytes
1960 [`string_to_string`]: https://rust-lang.github.io/rust-clippy/master/index.html#string_to_string
1961 [`struct_excessive_bools`]: https://rust-lang.github.io/rust-clippy/master/index.html#struct_excessive_bools
1962 [`suboptimal_flops`]: https://rust-lang.github.io/rust-clippy/master/index.html#suboptimal_flops
1963 [`suspicious_arithmetic_impl`]: https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_arithmetic_impl
1964 [`suspicious_assignment_formatting`]: https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_assignment_formatting
1965 [`suspicious_else_formatting`]: https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_else_formatting
1966 [`suspicious_map`]: https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_map
1967 [`suspicious_op_assign_impl`]: https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_op_assign_impl
1968 [`suspicious_unary_op_formatting`]: https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_unary_op_formatting
1969 [`tabs_in_doc_comments`]: https://rust-lang.github.io/rust-clippy/master/index.html#tabs_in_doc_comments
1970 [`temporary_assignment`]: https://rust-lang.github.io/rust-clippy/master/index.html#temporary_assignment
1971 [`temporary_cstring_as_ptr`]: https://rust-lang.github.io/rust-clippy/master/index.html#temporary_cstring_as_ptr
1972 [`to_digit_is_some`]: https://rust-lang.github.io/rust-clippy/master/index.html#to_digit_is_some
1973 [`to_string_in_display`]: https://rust-lang.github.io/rust-clippy/master/index.html#to_string_in_display
1974 [`todo`]: https://rust-lang.github.io/rust-clippy/master/index.html#todo
1975 [`too_many_arguments`]: https://rust-lang.github.io/rust-clippy/master/index.html#too_many_arguments
1976 [`too_many_lines`]: https://rust-lang.github.io/rust-clippy/master/index.html#too_many_lines
1977 [`toplevel_ref_arg`]: https://rust-lang.github.io/rust-clippy/master/index.html#toplevel_ref_arg
1978 [`trait_duplication_in_bounds`]: https://rust-lang.github.io/rust-clippy/master/index.html#trait_duplication_in_bounds
1979 [`transmute_bytes_to_str`]: https://rust-lang.github.io/rust-clippy/master/index.html#transmute_bytes_to_str
1980 [`transmute_float_to_int`]: https://rust-lang.github.io/rust-clippy/master/index.html#transmute_float_to_int
1981 [`transmute_int_to_bool`]: https://rust-lang.github.io/rust-clippy/master/index.html#transmute_int_to_bool
1982 [`transmute_int_to_char`]: https://rust-lang.github.io/rust-clippy/master/index.html#transmute_int_to_char
1983 [`transmute_int_to_float`]: https://rust-lang.github.io/rust-clippy/master/index.html#transmute_int_to_float
1984 [`transmute_ptr_to_ptr`]: https://rust-lang.github.io/rust-clippy/master/index.html#transmute_ptr_to_ptr
1985 [`transmute_ptr_to_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#transmute_ptr_to_ref
1986 [`transmutes_expressible_as_ptr_casts`]: https://rust-lang.github.io/rust-clippy/master/index.html#transmutes_expressible_as_ptr_casts
1987 [`transmuting_null`]: https://rust-lang.github.io/rust-clippy/master/index.html#transmuting_null
1988 [`trivial_regex`]: https://rust-lang.github.io/rust-clippy/master/index.html#trivial_regex
1989 [`trivially_copy_pass_by_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#trivially_copy_pass_by_ref
1990 [`try_err`]: https://rust-lang.github.io/rust-clippy/master/index.html#try_err
1991 [`type_complexity`]: https://rust-lang.github.io/rust-clippy/master/index.html#type_complexity
1992 [`type_repetition_in_bounds`]: https://rust-lang.github.io/rust-clippy/master/index.html#type_repetition_in_bounds
1993 [`undropped_manually_drops`]: https://rust-lang.github.io/rust-clippy/master/index.html#undropped_manually_drops
1994 [`unicode_not_nfc`]: https://rust-lang.github.io/rust-clippy/master/index.html#unicode_not_nfc
1995 [`unimplemented`]: https://rust-lang.github.io/rust-clippy/master/index.html#unimplemented
1996 [`uninit_assumed_init`]: https://rust-lang.github.io/rust-clippy/master/index.html#uninit_assumed_init
1997 [`unit_arg`]: https://rust-lang.github.io/rust-clippy/master/index.html#unit_arg
1998 [`unit_cmp`]: https://rust-lang.github.io/rust-clippy/master/index.html#unit_cmp
1999 [`unit_return_expecting_ord`]: https://rust-lang.github.io/rust-clippy/master/index.html#unit_return_expecting_ord
2000 [`unknown_clippy_lints`]: https://rust-lang.github.io/rust-clippy/master/index.html#unknown_clippy_lints
2001 [`unnecessary_cast`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
2002 [`unnecessary_filter_map`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_filter_map
2003 [`unnecessary_fold`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_fold
2004 [`unnecessary_lazy_evaluations`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_lazy_evaluations
2005 [`unnecessary_mut_passed`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_mut_passed
2006 [`unnecessary_operation`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_operation
2007 [`unnecessary_sort_by`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_sort_by
2008 [`unnecessary_unwrap`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_unwrap
2009 [`unneeded_field_pattern`]: https://rust-lang.github.io/rust-clippy/master/index.html#unneeded_field_pattern
2010 [`unneeded_wildcard_pattern`]: https://rust-lang.github.io/rust-clippy/master/index.html#unneeded_wildcard_pattern
2011 [`unnested_or_patterns`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnested_or_patterns
2012 [`unreachable`]: https://rust-lang.github.io/rust-clippy/master/index.html#unreachable
2013 [`unreadable_literal`]: https://rust-lang.github.io/rust-clippy/master/index.html#unreadable_literal
2014 [`unsafe_derive_deserialize`]: https://rust-lang.github.io/rust-clippy/master/index.html#unsafe_derive_deserialize
2015 [`unsafe_removed_from_name`]: https://rust-lang.github.io/rust-clippy/master/index.html#unsafe_removed_from_name
2016 [`unsafe_vector_initialization`]: https://rust-lang.github.io/rust-clippy/master/index.html#unsafe_vector_initialization
2017 [`unseparated_literal_suffix`]: https://rust-lang.github.io/rust-clippy/master/index.html#unseparated_literal_suffix
2018 [`unsound_collection_transmute`]: https://rust-lang.github.io/rust-clippy/master/index.html#unsound_collection_transmute
2019 [`unstable_as_mut_slice`]: https://rust-lang.github.io/rust-clippy/master/index.html#unstable_as_mut_slice
2020 [`unstable_as_slice`]: https://rust-lang.github.io/rust-clippy/master/index.html#unstable_as_slice
2021 [`unused_collect`]: https://rust-lang.github.io/rust-clippy/master/index.html#unused_collect
2022 [`unused_io_amount`]: https://rust-lang.github.io/rust-clippy/master/index.html#unused_io_amount
2023 [`unused_label`]: https://rust-lang.github.io/rust-clippy/master/index.html#unused_label
2024 [`unused_self`]: https://rust-lang.github.io/rust-clippy/master/index.html#unused_self
2025 [`unused_unit`]: https://rust-lang.github.io/rust-clippy/master/index.html#unused_unit
2026 [`unusual_byte_groupings`]: https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings
2027 [`unwrap_in_result`]: https://rust-lang.github.io/rust-clippy/master/index.html#unwrap_in_result
2028 [`unwrap_used`]: https://rust-lang.github.io/rust-clippy/master/index.html#unwrap_used
2029 [`use_debug`]: https://rust-lang.github.io/rust-clippy/master/index.html#use_debug
2030 [`use_self`]: https://rust-lang.github.io/rust-clippy/master/index.html#use_self
2031 [`used_underscore_binding`]: https://rust-lang.github.io/rust-clippy/master/index.html#used_underscore_binding
2032 [`useless_asref`]: https://rust-lang.github.io/rust-clippy/master/index.html#useless_asref
2033 [`useless_attribute`]: https://rust-lang.github.io/rust-clippy/master/index.html#useless_attribute
2034 [`useless_conversion`]: https://rust-lang.github.io/rust-clippy/master/index.html#useless_conversion
2035 [`useless_format`]: https://rust-lang.github.io/rust-clippy/master/index.html#useless_format
2036 [`useless_let_if_seq`]: https://rust-lang.github.io/rust-clippy/master/index.html#useless_let_if_seq
2037 [`useless_transmute`]: https://rust-lang.github.io/rust-clippy/master/index.html#useless_transmute
2038 [`useless_vec`]: https://rust-lang.github.io/rust-clippy/master/index.html#useless_vec
2039 [`vec_box`]: https://rust-lang.github.io/rust-clippy/master/index.html#vec_box
2040 [`vec_resize_to_zero`]: https://rust-lang.github.io/rust-clippy/master/index.html#vec_resize_to_zero
2041 [`verbose_bit_mask`]: https://rust-lang.github.io/rust-clippy/master/index.html#verbose_bit_mask
2042 [`verbose_file_reads`]: https://rust-lang.github.io/rust-clippy/master/index.html#verbose_file_reads
2043 [`vtable_address_comparisons`]: https://rust-lang.github.io/rust-clippy/master/index.html#vtable_address_comparisons
2044 [`while_immutable_condition`]: https://rust-lang.github.io/rust-clippy/master/index.html#while_immutable_condition
2045 [`while_let_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#while_let_loop
2046 [`while_let_on_iterator`]: https://rust-lang.github.io/rust-clippy/master/index.html#while_let_on_iterator
2047 [`wildcard_dependencies`]: https://rust-lang.github.io/rust-clippy/master/index.html#wildcard_dependencies
2048 [`wildcard_enum_match_arm`]: https://rust-lang.github.io/rust-clippy/master/index.html#wildcard_enum_match_arm
2049 [`wildcard_imports`]: https://rust-lang.github.io/rust-clippy/master/index.html#wildcard_imports
2050 [`wildcard_in_or_patterns`]: https://rust-lang.github.io/rust-clippy/master/index.html#wildcard_in_or_patterns
2051 [`write_literal`]: https://rust-lang.github.io/rust-clippy/master/index.html#write_literal
2052 [`write_with_newline`]: https://rust-lang.github.io/rust-clippy/master/index.html#write_with_newline
2053 [`writeln_empty_string`]: https://rust-lang.github.io/rust-clippy/master/index.html#writeln_empty_string
2054 [`wrong_pub_self_convention`]: https://rust-lang.github.io/rust-clippy/master/index.html#wrong_pub_self_convention
2055 [`wrong_self_convention`]: https://rust-lang.github.io/rust-clippy/master/index.html#wrong_self_convention
2056 [`wrong_transmute`]: https://rust-lang.github.io/rust-clippy/master/index.html#wrong_transmute
2057 [`zero_divided_by_zero`]: https://rust-lang.github.io/rust-clippy/master/index.html#zero_divided_by_zero
2058 [`zero_prefixed_literal`]: https://rust-lang.github.io/rust-clippy/master/index.html#zero_prefixed_literal
2059 [`zero_ptr`]: https://rust-lang.github.io/rust-clippy/master/index.html#zero_ptr
2060 [`zst_offset`]: https://rust-lang.github.io/rust-clippy/master/index.html#zst_offset
2061 <!-- end autogenerated links to lint list -->