1 file changed
+1
-1
lines changed- .github/workflows/clippy_bors.yml+3-2
- .github/workflows/clippy_dev.yml+1-1
- CHANGELOG.md+2
- README.md+2-2
- clippy_lints/src/assign_ops.rs+5-5
- clippy_lints/src/attrs.rs+5-5
- clippy_lints/src/bit_mask.rs+2-2
- clippy_lints/src/booleans.rs+5-5
- clippy_lints/src/collapsible_if.rs+2-2
- clippy_lints/src/copies.rs+4-4
- clippy_lints/src/derive.rs+4-4
- clippy_lints/src/empty_enum.rs+2-2
- clippy_lints/src/entry.rs+3-3
- clippy_lints/src/eq_op.rs+36-24
- clippy_lints/src/eta_reduction.rs+4-4
- clippy_lints/src/fallible_impl_from.rs+3-3
- clippy_lints/src/format.rs+2-2
- clippy_lints/src/functions.rs+4-4
- clippy_lints/src/future_not_send.rs+113
- clippy_lints/src/identity_conversion.rs+6-6
- clippy_lints/src/implicit_return.rs+2-2
- clippy_lints/src/implicit_saturating_sub.rs+173
- clippy_lints/src/inherent_impl.rs+2-2
- clippy_lints/src/inline_fn_without_body.rs+2-2
- clippy_lints/src/int_plus_one.rs+2-2
- clippy_lints/src/large_const_arrays.rs+2-2
- clippy_lints/src/large_enum_variant.rs+5-5
- clippy_lints/src/let_if_seq.rs+3-3
- clippy_lints/src/lib.rs+8
- clippy_lints/src/loops.rs+18-18
- clippy_lints/src/map_unit_fn.rs+5-5
- clippy_lints/src/matches.rs+8-4
- clippy_lints/src/mem_discriminant.rs+2-2
- clippy_lints/src/mem_replace.rs+2-2
- clippy_lints/src/methods/inefficient_to_string.rs+3-3
- clippy_lints/src/methods/mod.rs+27-9
- clippy_lints/src/methods/option_map_unwrap_or.rs+2-2
- clippy_lints/src/misc.rs+10-10
- clippy_lints/src/misc_early.rs+5-5
- clippy_lints/src/modulo_arithmetic.rs+6-6
- clippy_lints/src/needless_borrow.rs+4-4
- clippy_lints/src/needless_borrowed_ref.rs+2-2
- clippy_lints/src/needless_pass_by_value.rs+7-7
- clippy_lints/src/new_without_default.rs+4-4
- clippy_lints/src/non_copy_const.rs+4-4
- clippy_lints/src/precedence.rs+25-1
- clippy_lints/src/ptr.rs+10-10
- clippy_lints/src/question_mark.rs+5-3
- clippy_lints/src/ranges.rs+5-5
- clippy_lints/src/redundant_clone.rs+4-4
- clippy_lints/src/redundant_pattern_matching.rs+25-13
- clippy_lints/src/redundant_pub_crate.rs+2-2
- clippy_lints/src/redundant_static_lifetimes.rs+14-8
- clippy_lints/src/returns.rs+12-12
- clippy_lints/src/shadow.rs+10-10
- clippy_lints/src/slow_vector_initialization.rs+2-2
- clippy_lints/src/swap.rs+6-6
- clippy_lints/src/transmute.rs+20-20
- clippy_lints/src/types.rs+28-22
- clippy_lints/src/unwrap.rs+2-2
- clippy_lints/src/utils/attrs.rs+5-5
- clippy_lints/src/utils/diagnostics.rs+38-35
- clippy_lints/src/utils/sugg.rs+3-3
- src/lintlist/mod.rs+14
- src/main.rs+149-42
- tests/ui/future_not_send.rs+79
- tests/ui/future_not_send.stderr+125
- tests/ui/implicit_saturating_sub.fixed+160
- tests/ui/implicit_saturating_sub.rs+206
- tests/ui/implicit_saturating_sub.stderr+188
- tests/ui/infallible_destructuring_match.fixed+33
- tests/ui/infallible_destructuring_match.rs+33
- tests/ui/infallible_destructuring_match.stderr+3-3
- tests/ui/map_flatten.fixed+1
- tests/ui/map_flatten.rs+1
- tests/ui/map_flatten.stderr+7-1
- tests/ui/match_single_binding.fixed+10
- tests/ui/match_single_binding.rs+10
- tests/ui/match_single_binding.stderr+11-11
- tests/ui/precedence.fixed+16
- tests/ui/precedence.rs+16
- tests/ui/question_mark.fixed+12
- tests/ui/question_mark.rs+14
- tests/ui/question_mark.stderr+9-1
- tests/ui/redundant_pattern_matching.fixed+42-9
- tests/ui/redundant_pattern_matching.rs+26-1
- tests/ui/redundant_pattern_matching.stderr+64-32
- tests/ui/rest_pat_in_fully_bound_structs.rs+12
- tests/ui/rest_pat_in_fully_bound_structs.stderr+3-3
0 commit comments