@@ -70,7 +70,7 @@ Current beta, release 2021-12-02
7070 [#7560](https://github.com/rust-lang/rust-clippy/pull/7560)
7171* [`unnecessary_unwrap`]: Now also checks for `expect`s
7272 [#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
7474 lint message
7575 [#7621](https://github.com/rust-lang/rust-clippy/pull/7621)
7676* [`approx_constant`]: Now checks the MSRV for `LOG10_2` and `LOG2_10`
@@ -174,7 +174,7 @@ Current stable, released 2021-10-21
174174
175175* [`needless_continue`]: Now also lints in `loop { continue; }` case
176176 [#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
178178 [#7488](https://github.com/rust-lang/rust-clippy/pull/7488)
179179* [`manual_swap`]: Now also lints on xor swaps
180180 [#7506](https://github.com/rust-lang/rust-clippy/pull/7506)
@@ -248,7 +248,7 @@ Released 2021-09-09
248248 [#7403](https://github.com/rust-lang/rust-clippy/pull/7403)
249249* [`disallowed_script_idents`]
250250 [#7400](https://github.com/rust-lang/rust-clippy/pull/7400)
251- * [`disallowed_type `]
251+ * [`disallowed_types `]
252252 [#7315](https://github.com/rust-lang/rust-clippy/pull/7315)
253253* [`missing_enforced_import_renames`]
254254 [#7300](https://github.com/rust-lang/rust-clippy/pull/7300)
@@ -294,7 +294,7 @@ Released 2021-09-09
294294 [#7379](https://github.com/rust-lang/rust-clippy/pull/7379)
295295* [`redundant_closure`]: Suggests `&mut` for `FnMut`
296296 [#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`
298298 no longer require fully qualified paths
299299 [#7345](https://github.com/rust-lang/rust-clippy/pull/7345)
300300* [`zst_offset`]: Fixed lint invocation after it was accidentally suppressed
@@ -703,7 +703,7 @@ Released 2021-05-06
703703
704704### Enhancements
705705
706- * [`disallowed_method `]: Now supports functions in addition to methods
706+ * [`disallowed_methods `]: Now supports functions in addition to methods
707707 [#6674](https://github.com/rust-lang/rust-clippy/pull/6674)
708708* [`upper_case_acronyms`]: Added a new configuration `upper-case-acronyms-aggressive` to
709709 trigger the lint if there is more than one uppercase character next to each other
@@ -1044,7 +1044,7 @@ Released 2020-12-31
10441044
10451045* [`field_reassign_with_default`] [#5911](https://github.com/rust-lang/rust-clippy/pull/5911)
10461046* [`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)
10481048* [`inline_asm_x86_att_syntax`] [#6092](https://github.com/rust-lang/rust-clippy/pull/6092)
10491049* [`inline_asm_x86_intel_syntax`] [#6092](https://github.com/rust-lang/rust-clippy/pull/6092)
10501050* [`from_iter_instead_of_collect`] [#6101](https://github.com/rust-lang/rust-clippy/pull/6101)
@@ -2821,9 +2821,9 @@ Released 2018-09-13
28212821[`derivable_impls`]: https://rust-lang.github.io/rust-clippy/master/index.html#derivable_impls
28222822[`derive_hash_xor_eq`]: https://rust-lang.github.io/rust-clippy/master/index.html#derive_hash_xor_eq
28232823[`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
28252825[`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
28272827[`diverging_sub_expression`]: https://rust-lang.github.io/rust-clippy/master/index.html#diverging_sub_expression
28282828[`doc_markdown`]: https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown
28292829[`double_comparisons`]: https://rust-lang.github.io/rust-clippy/master/index.html#double_comparisons
@@ -2904,6 +2904,7 @@ Released 2018-09-13
29042904[`imprecise_flops`]: https://rust-lang.github.io/rust-clippy/master/index.html#imprecise_flops
29052905[`inconsistent_digit_grouping`]: https://rust-lang.github.io/rust-clippy/master/index.html#inconsistent_digit_grouping
29062906[`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
29072908[`indexing_slicing`]: https://rust-lang.github.io/rust-clippy/master/index.html#indexing_slicing
29082909[`ineffective_bit_mask`]: https://rust-lang.github.io/rust-clippy/master/index.html#ineffective_bit_mask
29092910[`inefficient_to_string`]: https://rust-lang.github.io/rust-clippy/master/index.html#inefficient_to_string
@@ -3038,6 +3039,7 @@ Released 2018-09-13
30383039[`needless_question_mark`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_question_mark
30393040[`needless_range_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_range_loop
30403041[`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
30413043[`needless_update`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_update
30423044[`neg_cmp_op_on_partial_ord`]: https://rust-lang.github.io/rust-clippy/master/index.html#neg_cmp_op_on_partial_ord
30433045[`neg_multiply`]: https://rust-lang.github.io/rust-clippy/master/index.html#neg_multiply
@@ -3054,6 +3056,7 @@ Released 2018-09-13
30543056[`nonsensical_open_options`]: https://rust-lang.github.io/rust-clippy/master/index.html#nonsensical_open_options
30553057[`nonstandard_macro_braces`]: https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces
30563058[`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
30573060[`ok_expect`]: https://rust-lang.github.io/rust-clippy/master/index.html#ok_expect
30583061[`op_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#op_ref
30593062[`option_as_ref_deref`]: https://rust-lang.github.io/rust-clippy/master/index.html#option_as_ref_deref
0 commit comments