@@ -70,7 +70,7 @@ Current beta, release 2021-12-02
70
70
[ #7560 ] ( https://github.com/rust-lang/rust-clippy/pull/7560 )
71
71
* [ ` unnecessary_unwrap ` ] : Now also checks for ` expect ` s
72
72
[ #7584 ] ( https://github.com/rust-lang/rust-clippy/pull/7584 )
73
- * [ ` disallowed_method ` ] : Allow adding a reason that will be displayed with the
73
+ * [ ` disallowed_methods ` ] : Allow adding a reason that will be displayed with the
74
74
lint message
75
75
[ #7621 ] ( https://github.com/rust-lang/rust-clippy/pull/7621 )
76
76
* [ ` approx_constant ` ] : Now checks the MSRV for ` LOG10_2 ` and ` LOG2_10 `
@@ -174,7 +174,7 @@ Current stable, released 2021-10-21
174
174
175
175
* [ ` needless_continue ` ] : Now also lints in ` loop { continue; } ` case
176
176
[ #7477 ] ( https://github.com/rust-lang/rust-clippy/pull/7477 )
177
- * [ ` disallowed_type ` ] : Now also primitive types can be disallowed
177
+ * [ ` disallowed_types ` ] : Now also primitive types can be disallowed
178
178
[ #7488 ] ( https://github.com/rust-lang/rust-clippy/pull/7488 )
179
179
* [ ` manual_swap ` ] : Now also lints on xor swaps
180
180
[ #7506 ] ( https://github.com/rust-lang/rust-clippy/pull/7506 )
@@ -248,7 +248,7 @@ Released 2021-09-09
248
248
[ #7403 ] ( https://github.com/rust-lang/rust-clippy/pull/7403 )
249
249
* [ ` disallowed_script_idents ` ]
250
250
[ #7400 ] ( https://github.com/rust-lang/rust-clippy/pull/7400 )
251
- * [ ` disallowed_type ` ]
251
+ * [ ` disallowed_types ` ]
252
252
[ #7315 ] ( https://github.com/rust-lang/rust-clippy/pull/7315 )
253
253
* [ ` missing_enforced_import_renames ` ]
254
254
[ #7300 ] ( https://github.com/rust-lang/rust-clippy/pull/7300 )
@@ -294,7 +294,7 @@ Released 2021-09-09
294
294
[ #7379 ] ( https://github.com/rust-lang/rust-clippy/pull/7379 )
295
295
* [ ` redundant_closure ` ] : Suggests ` &mut ` for ` FnMut `
296
296
[ #7437 ] ( https://github.com/rust-lang/rust-clippy/pull/7437 )
297
- * [ ` disallowed_method ` ] , [ ` disallowed_type ` ] : The configuration values ` disallowed-method ` and ` disallowed-type `
297
+ * [ ` disallowed_methods ` ] , [ ` disallowed_types ` ] : The configuration values ` disallowed-method ` and ` disallowed-type `
298
298
no longer require fully qualified paths
299
299
[ #7345 ] ( https://github.com/rust-lang/rust-clippy/pull/7345 )
300
300
* [ ` zst_offset ` ] : Fixed lint invocation after it was accidentally suppressed
@@ -703,7 +703,7 @@ Released 2021-05-06
703
703
704
704
### Enhancements
705
705
706
- * [ ` disallowed_method ` ] : Now supports functions in addition to methods
706
+ * [ ` disallowed_methods ` ] : Now supports functions in addition to methods
707
707
[ #6674 ] ( https://github.com/rust-lang/rust-clippy/pull/6674 )
708
708
* [ ` upper_case_acronyms ` ] : Added a new configuration ` upper-case-acronyms-aggressive ` to
709
709
trigger the lint if there is more than one uppercase character next to each other
@@ -1044,7 +1044,7 @@ Released 2020-12-31
1044
1044
1045
1045
* [ ` field_reassign_with_default ` ] [ #5911 ] ( https://github.com/rust-lang/rust-clippy/pull/5911 )
1046
1046
* [ ` await_holding_refcell_ref ` ] [ #6029 ] ( https://github.com/rust-lang/rust-clippy/pull/6029 )
1047
- * [ ` disallowed_method ` ] [ #6081 ] ( https://github.com/rust-lang/rust-clippy/pull/6081 )
1047
+ * [ ` disallowed_methods ` ] [ #6081 ] ( https://github.com/rust-lang/rust-clippy/pull/6081 )
1048
1048
* [ ` inline_asm_x86_att_syntax ` ] [ #6092 ] ( https://github.com/rust-lang/rust-clippy/pull/6092 )
1049
1049
* [ ` inline_asm_x86_intel_syntax ` ] [ #6092 ] ( https://github.com/rust-lang/rust-clippy/pull/6092 )
1050
1050
* [ ` from_iter_instead_of_collect ` ] [ #6101 ] ( https://github.com/rust-lang/rust-clippy/pull/6101 )
@@ -2821,9 +2821,9 @@ Released 2018-09-13
2821
2821
[ `derivable_impls` ] : https://rust-lang.github.io/rust-clippy/master/index.html#derivable_impls
2822
2822
[ `derive_hash_xor_eq` ] : https://rust-lang.github.io/rust-clippy/master/index.html#derive_hash_xor_eq
2823
2823
[ `derive_ord_xor_partial_ord` ] : https://rust-lang.github.io/rust-clippy/master/index.html#derive_ord_xor_partial_ord
2824
- [ `disallowed_method ` ] : https://rust-lang.github.io/rust-clippy/master/index.html#disallowed_method
2824
+ [ `disallowed_methods ` ] : https://rust-lang.github.io/rust-clippy/master/index.html#disallowed_methods
2825
2825
[ `disallowed_script_idents` ] : https://rust-lang.github.io/rust-clippy/master/index.html#disallowed_script_idents
2826
- [ `disallowed_type ` ] : https://rust-lang.github.io/rust-clippy/master/index.html#disallowed_type
2826
+ [ `disallowed_types ` ] : https://rust-lang.github.io/rust-clippy/master/index.html#disallowed_types
2827
2827
[ `diverging_sub_expression` ] : https://rust-lang.github.io/rust-clippy/master/index.html#diverging_sub_expression
2828
2828
[ `doc_markdown` ] : https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown
2829
2829
[ `double_comparisons` ] : https://rust-lang.github.io/rust-clippy/master/index.html#double_comparisons
@@ -2904,6 +2904,7 @@ Released 2018-09-13
2904
2904
[ `imprecise_flops` ] : https://rust-lang.github.io/rust-clippy/master/index.html#imprecise_flops
2905
2905
[ `inconsistent_digit_grouping` ] : https://rust-lang.github.io/rust-clippy/master/index.html#inconsistent_digit_grouping
2906
2906
[ `inconsistent_struct_constructor` ] : https://rust-lang.github.io/rust-clippy/master/index.html#inconsistent_struct_constructor
2907
+ [ `index_refutable_slice` ] : https://rust-lang.github.io/rust-clippy/master/index.html#index_refutable_slice
2907
2908
[ `indexing_slicing` ] : https://rust-lang.github.io/rust-clippy/master/index.html#indexing_slicing
2908
2909
[ `ineffective_bit_mask` ] : https://rust-lang.github.io/rust-clippy/master/index.html#ineffective_bit_mask
2909
2910
[ `inefficient_to_string` ] : https://rust-lang.github.io/rust-clippy/master/index.html#inefficient_to_string
@@ -3038,6 +3039,7 @@ Released 2018-09-13
3038
3039
[ `needless_question_mark` ] : https://rust-lang.github.io/rust-clippy/master/index.html#needless_question_mark
3039
3040
[ `needless_range_loop` ] : https://rust-lang.github.io/rust-clippy/master/index.html#needless_range_loop
3040
3041
[ `needless_return` ] : https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
3042
+ [ `needless_splitn` ] : https://rust-lang.github.io/rust-clippy/master/index.html#needless_splitn
3041
3043
[ `needless_update` ] : https://rust-lang.github.io/rust-clippy/master/index.html#needless_update
3042
3044
[ `neg_cmp_op_on_partial_ord` ] : https://rust-lang.github.io/rust-clippy/master/index.html#neg_cmp_op_on_partial_ord
3043
3045
[ `neg_multiply` ] : https://rust-lang.github.io/rust-clippy/master/index.html#neg_multiply
@@ -3054,6 +3056,7 @@ Released 2018-09-13
3054
3056
[ `nonsensical_open_options` ] : https://rust-lang.github.io/rust-clippy/master/index.html#nonsensical_open_options
3055
3057
[ `nonstandard_macro_braces` ] : https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces
3056
3058
[ `not_unsafe_ptr_arg_deref` ] : https://rust-lang.github.io/rust-clippy/master/index.html#not_unsafe_ptr_arg_deref
3059
+ [ `octal_escapes` ] : https://rust-lang.github.io/rust-clippy/master/index.html#octal_escapes
3057
3060
[ `ok_expect` ] : https://rust-lang.github.io/rust-clippy/master/index.html#ok_expect
3058
3061
[ `op_ref` ] : https://rust-lang.github.io/rust-clippy/master/index.html#op_ref
3059
3062
[ `option_as_ref_deref` ] : https://rust-lang.github.io/rust-clippy/master/index.html#option_as_ref_deref
0 commit comments