@@ -964,7 +964,7 @@ Released 2020-11-19
964
964
[ #5907 ] ( https://github.com/rust-lang/rust-clippy/pull/5907 )
965
965
* [ ` suspicious_arithmetic_impl ` ] : extend to implementations of ` BitAnd ` , ` BitOr ` , ` BitXor ` , ` Rem ` , ` Shl ` , and ` Shr `
966
966
[ #5884 ] ( https://github.com/rust-lang/rust-clippy/pull/5884 )
967
- * [ ` invalid_atomic_ordering ` ] : detect misuse of ` compare_exchange ` , ` compare_exchange_weak ` , and ` fetch_update `
967
+ * ` invalid_atomic_ordering ` : detect misuse of ` compare_exchange ` , ` compare_exchange_weak ` , and ` fetch_update `
968
968
[ #6025 ] ( https://github.com/rust-lang/rust-clippy/pull/6025 )
969
969
* Avoid [ ` redundant_pattern_matching ` ] triggering in macros
970
970
[ #6069 ] ( https://github.com/rust-lang/rust-clippy/pull/6069 )
@@ -1451,7 +1451,7 @@ Released 2020-03-12
1451
1451
* [ ` option_as_ref_deref ` ] [ #4945 ] ( https://github.com/rust-lang/rust-clippy/pull/4945 )
1452
1452
* [ ` wildcard_in_or_patterns ` ] [ #4960 ] ( https://github.com/rust-lang/rust-clippy/pull/4960 )
1453
1453
* [ ` iter_nth_zero ` ] [ #4966 ] ( https://github.com/rust-lang/rust-clippy/pull/4966 )
1454
- * [ ` invalid_atomic_ordering ` ] [ #4999 ] ( https://github.com/rust-lang/rust-clippy/pull/4999 )
1454
+ * ` invalid_atomic_ordering ` [ #4999 ] ( https://github.com/rust-lang/rust-clippy/pull/4999 )
1455
1455
* [ ` skip_while_next ` ] [ #5067 ] ( https://github.com/rust-lang/rust-clippy/pull/5067 )
1456
1456
1457
1457
### Moves and Deprecations
@@ -2613,6 +2613,7 @@ Released 2018-09-13
2613
2613
[ `deprecated_cfg_attr` ] : https://rust-lang.github.io/rust-clippy/master/index.html#deprecated_cfg_attr
2614
2614
[ `deprecated_semver` ] : https://rust-lang.github.io/rust-clippy/master/index.html#deprecated_semver
2615
2615
[ `deref_addrof` ] : https://rust-lang.github.io/rust-clippy/master/index.html#deref_addrof
2616
+ [ `derivable_impls` ] : https://rust-lang.github.io/rust-clippy/master/index.html#derivable_impls
2616
2617
[ `derive_hash_xor_eq` ] : https://rust-lang.github.io/rust-clippy/master/index.html#derive_hash_xor_eq
2617
2618
[ `derive_ord_xor_partial_ord` ] : https://rust-lang.github.io/rust-clippy/master/index.html#derive_ord_xor_partial_ord
2618
2619
[ `disallowed_method` ] : https://rust-lang.github.io/rust-clippy/master/index.html#disallowed_method
@@ -2712,7 +2713,6 @@ Released 2018-09-13
2712
2713
[ `integer_arithmetic` ] : https://rust-lang.github.io/rust-clippy/master/index.html#integer_arithmetic
2713
2714
[ `integer_division` ] : https://rust-lang.github.io/rust-clippy/master/index.html#integer_division
2714
2715
[ `into_iter_on_ref` ] : https://rust-lang.github.io/rust-clippy/master/index.html#into_iter_on_ref
2715
- [ `invalid_atomic_ordering` ] : https://rust-lang.github.io/rust-clippy/master/index.html#invalid_atomic_ordering
2716
2716
[ `invalid_null_ptr_usage` ] : https://rust-lang.github.io/rust-clippy/master/index.html#invalid_null_ptr_usage
2717
2717
[ `invalid_regex` ] : https://rust-lang.github.io/rust-clippy/master/index.html#invalid_regex
2718
2718
[ `invalid_upcast_comparisons` ] : https://rust-lang.github.io/rust-clippy/master/index.html#invalid_upcast_comparisons
@@ -2754,6 +2754,7 @@ Released 2018-09-13
2754
2754
[ `manual_ok_or` ] : https://rust-lang.github.io/rust-clippy/master/index.html#manual_ok_or
2755
2755
[ `manual_range_contains` ] : https://rust-lang.github.io/rust-clippy/master/index.html#manual_range_contains
2756
2756
[ `manual_saturating_arithmetic` ] : https://rust-lang.github.io/rust-clippy/master/index.html#manual_saturating_arithmetic
2757
+ [ `manual_split_once` ] : https://rust-lang.github.io/rust-clippy/master/index.html#manual_split_once
2757
2758
[ `manual_str_repeat` ] : https://rust-lang.github.io/rust-clippy/master/index.html#manual_str_repeat
2758
2759
[ `manual_strip` ] : https://rust-lang.github.io/rust-clippy/master/index.html#manual_strip
2759
2760
[ `manual_swap` ] : https://rust-lang.github.io/rust-clippy/master/index.html#manual_swap
@@ -2795,6 +2796,7 @@ Released 2018-09-13
2795
2796
[ `missing_safety_doc` ] : https://rust-lang.github.io/rust-clippy/master/index.html#missing_safety_doc
2796
2797
[ `mistyped_literal_suffixes` ] : https://rust-lang.github.io/rust-clippy/master/index.html#mistyped_literal_suffixes
2797
2798
[ `mixed_case_hex_literals` ] : https://rust-lang.github.io/rust-clippy/master/index.html#mixed_case_hex_literals
2799
+ [ `mod_module_files` ] : https://rust-lang.github.io/rust-clippy/master/index.html#mod_module_files
2798
2800
[ `module_inception` ] : https://rust-lang.github.io/rust-clippy/master/index.html#module_inception
2799
2801
[ `module_name_repetitions` ] : https://rust-lang.github.io/rust-clippy/master/index.html#module_name_repetitions
2800
2802
[ `modulo_arithmetic` ] : https://rust-lang.github.io/rust-clippy/master/index.html#modulo_arithmetic
@@ -2821,13 +2823,15 @@ Released 2018-09-13
2821
2823
[ `needless_doctest_main` ] : https://rust-lang.github.io/rust-clippy/master/index.html#needless_doctest_main
2822
2824
[ `needless_for_each` ] : https://rust-lang.github.io/rust-clippy/master/index.html#needless_for_each
2823
2825
[ `needless_lifetimes` ] : https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
2826
+ [ `needless_option_as_deref` ] : https://rust-lang.github.io/rust-clippy/master/index.html#needless_option_as_deref
2824
2827
[ `needless_pass_by_value` ] : https://rust-lang.github.io/rust-clippy/master/index.html#needless_pass_by_value
2825
2828
[ `needless_question_mark` ] : https://rust-lang.github.io/rust-clippy/master/index.html#needless_question_mark
2826
2829
[ `needless_range_loop` ] : https://rust-lang.github.io/rust-clippy/master/index.html#needless_range_loop
2827
2830
[ `needless_return` ] : https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
2828
2831
[ `needless_update` ] : https://rust-lang.github.io/rust-clippy/master/index.html#needless_update
2829
2832
[ `neg_cmp_op_on_partial_ord` ] : https://rust-lang.github.io/rust-clippy/master/index.html#neg_cmp_op_on_partial_ord
2830
2833
[ `neg_multiply` ] : https://rust-lang.github.io/rust-clippy/master/index.html#neg_multiply
2834
+ [ `negative_feature_names` ] : https://rust-lang.github.io/rust-clippy/master/index.html#negative_feature_names
2831
2835
[ `never_loop` ] : https://rust-lang.github.io/rust-clippy/master/index.html#never_loop
2832
2836
[ `new_ret_no_self` ] : https://rust-lang.github.io/rust-clippy/master/index.html#new_ret_no_self
2833
2837
[ `new_without_default` ] : https://rust-lang.github.io/rust-clippy/master/index.html#new_without_default
@@ -2881,6 +2885,7 @@ Released 2018-09-13
2881
2885
[ `redundant_closure_call` ] : https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure_call
2882
2886
[ `redundant_closure_for_method_calls` ] : https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure_for_method_calls
2883
2887
[ `redundant_else` ] : https://rust-lang.github.io/rust-clippy/master/index.html#redundant_else
2888
+ [ `redundant_feature_names` ] : https://rust-lang.github.io/rust-clippy/master/index.html#redundant_feature_names
2884
2889
[ `redundant_field_names` ] : https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names
2885
2890
[ `redundant_pattern` ] : https://rust-lang.github.io/rust-clippy/master/index.html#redundant_pattern
2886
2891
[ `redundant_pattern_matching` ] : https://rust-lang.github.io/rust-clippy/master/index.html#redundant_pattern_matching
@@ -2903,6 +2908,7 @@ Released 2018-09-13
2903
2908
[ `search_is_some` ] : https://rust-lang.github.io/rust-clippy/master/index.html#search_is_some
2904
2909
[ `self_assignment` ] : https://rust-lang.github.io/rust-clippy/master/index.html#self_assignment
2905
2910
[ `self_named_constructors` ] : https://rust-lang.github.io/rust-clippy/master/index.html#self_named_constructors
2911
+ [ `self_named_module_files` ] : https://rust-lang.github.io/rust-clippy/master/index.html#self_named_module_files
2906
2912
[ `semicolon_if_nothing_returned` ] : https://rust-lang.github.io/rust-clippy/master/index.html#semicolon_if_nothing_returned
2907
2913
[ `serde_api_misuse` ] : https://rust-lang.github.io/rust-clippy/master/index.html#serde_api_misuse
2908
2914
[ `shadow_reuse` ] : https://rust-lang.github.io/rust-clippy/master/index.html#shadow_reuse
0 commit comments