Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 80a9330

Browse files
committedMar 24, 2023
Auto merge of #109566 - flip1995:clippyup, r=Manishearth
Update Clippy r? `@Manishearth` One day late, sorry 😐
2 parents 31d74fb + 50475e8 commit 80a9330

File tree

184 files changed

+2992
-1627
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

184 files changed

+2992
-1627
lines changed
 

‎src/tools/clippy/CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,8 @@ Current stable, released 2023-03-09
152152

153153
* `SYSROOT` and `--sysroot` can now be set at the same time
154154
[#10149](https://github.com/rust-lang/rust-clippy/pull/10149)
155+
* Fix error when providing an `array-size-threshold` in `clippy.toml`
156+
[#10423](https://github.com/rust-lang/rust-clippy/pull/10423)
155157

156158
## Rust 1.67
157159

@@ -186,8 +188,6 @@ Released 2023-01-26
186188

187189
### Moves and Deprecations
188190

189-
* Moved [`uninlined_format_args`] to `style` (Now warn-by-default)
190-
[#9865](https://github.com/rust-lang/rust-clippy/pull/9865)
191191
* Moved [`needless_collect`] to `nursery` (Now allow-by-default)
192192
[#9705](https://github.com/rust-lang/rust-clippy/pull/9705)
193193
* Moved [`or_fun_call`] to `nursery` (Now allow-by-default)
@@ -423,7 +423,7 @@ Released 2022-12-15
423423
[#9490](https://github.com/rust-lang/rust-clippy/pull/9490)
424424
* [`almost_complete_letter_range`]: No longer lints in external macros
425425
[#9467](https://github.com/rust-lang/rust-clippy/pull/9467)
426-
* [`drop_copy`]: No longer lints on idiomatic cases in match arms
426+
* [`drop_copy`]: No longer lints on idiomatic cases in match arms
427427
[#9491](https://github.com/rust-lang/rust-clippy/pull/9491)
428428
* [`question_mark`]: No longer lints in const context
429429
[#9487](https://github.com/rust-lang/rust-clippy/pull/9487)
@@ -4382,6 +4382,7 @@ Released 2018-09-13
43824382
<!-- begin autogenerated links to lint list -->
43834383
[`absurd_extreme_comparisons`]: https://rust-lang.github.io/rust-clippy/master/index.html#absurd_extreme_comparisons
43844384
[`alloc_instead_of_core`]: https://rust-lang.github.io/rust-clippy/master/index.html#alloc_instead_of_core
4385+
[`allow_attributes`]: https://rust-lang.github.io/rust-clippy/master/index.html#allow_attributes
43854386
[`allow_attributes_without_reason`]: https://rust-lang.github.io/rust-clippy/master/index.html#allow_attributes_without_reason
43864387
[`almost_complete_letter_range`]: https://rust-lang.github.io/rust-clippy/master/index.html#almost_complete_letter_range
43874388
[`almost_complete_range`]: https://rust-lang.github.io/rust-clippy/master/index.html#almost_complete_range
@@ -4661,6 +4662,7 @@ Released 2018-09-13
46614662
[`manual_instant_elapsed`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_instant_elapsed
46624663
[`manual_is_ascii_check`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_is_ascii_check
46634664
[`manual_let_else`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_let_else
4665+
[`manual_main_separator_str`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_main_separator_str
46644666
[`manual_map`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_map
46654667
[`manual_memcpy`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_memcpy
46664668
[`manual_non_exhaustive`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_non_exhaustive
@@ -4985,6 +4987,7 @@ Released 2018-09-13
49854987
[`unnecessary_safety_doc`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_safety_doc
49864988
[`unnecessary_self_imports`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_self_imports
49874989
[`unnecessary_sort_by`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_sort_by
4990+
[`unnecessary_struct_initialization`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_struct_initialization
49884991
[`unnecessary_to_owned`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_to_owned
49894992
[`unnecessary_unwrap`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_unwrap
49904993
[`unnecessary_wraps`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_wraps

‎src/tools/clippy/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ a [developer guide] and is a good place to start your journey.
5050
All issues on Clippy are mentored, if you want help simply ask someone from the
5151
Clippy team directly by mentioning them in the issue or over on [Zulip]. All
5252
currently active team members can be found
53-
[here](https://github.com/rust-lang/highfive/blob/master/highfive/configs/rust-lang/rust-clippy.json#L3)
53+
[here](https://github.com/rust-lang/rust-clippy/blob/master/triagebot.toml#L18)
5454

5555
Some issues are easier than others. The [`good-first-issue`] label can be used to find the easy
5656
issues. You can use `@rustbot claim` to assign the issue to yourself.

0 commit comments

Comments
 (0)
Please sign in to comment.