Skip to content

Commit ed91732

Browse files
committed
Auto merge of #99406 - flip1995:clippyup, r=Manishearth
Update Clippy
2 parents 144227d + 7fab8a4 commit ed91732

File tree

165 files changed

+3408
-944
lines changed

Some content is hidden

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

165 files changed

+3408
-944
lines changed

src/tools/clippy/.github/PULL_REQUEST_TEMPLATE.md

+8-4
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,15 @@ Thank you for making Clippy better!
33
We're collecting our changelog from pull request descriptions.
44
If your PR only includes internal changes, you can just write
55
`changelog: none`. Otherwise, please write a short comment
6-
explaining your change. Also, it's helpful for us that
7-
the lint name is put into brackets `[]` and backticks `` ` ` ``,
8-
e.g. ``[`lint_name`]``.
6+
explaining your change.
97

10-
If your PR fixes an issue, you can add "fixes #issue_number" into this
8+
It's also helpful for us that the lint name is put within backticks (`` ` ` ``),
9+
and then encapsulated by square brackets (`[]`), for example:
10+
```
11+
changelog: [`lint_name`]: your change
12+
```
13+
14+
If your PR fixes an issue, you can add `fixes #issue_number` into this
1115
PR description. This way the issue will be automatically closed when
1216
your PR is merged.
1317

src/tools/clippy/.github/workflows/clippy_bors.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ jobs:
144144
OS: ${{ runner.os }}
145145

146146
metadata_collection:
147-
needs: base
147+
needs: changelog
148148
runs-on: ubuntu-latest
149149

150150
steps:
@@ -264,7 +264,7 @@ jobs:
264264
name: bors test finished
265265
if: github.event.pusher.name == 'bors' && success()
266266
runs-on: ubuntu-latest
267-
needs: [changelog, base, integration_build, integration]
267+
needs: [changelog, base, metadata_collection, integration_build, integration]
268268

269269
steps:
270270
- name: Mark the job as successful
@@ -274,7 +274,7 @@ jobs:
274274
name: bors test finished
275275
if: github.event.pusher.name == 'bors' && (failure() || cancelled())
276276
runs-on: ubuntu-latest
277-
needs: [changelog, base, integration_build, integration]
277+
needs: [changelog, base, metadata_collection, integration_build, integration]
278278

279279
steps:
280280
- name: Mark the job as a failure

src/tools/clippy/CHANGELOG.md

+168-7
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,173 @@
11
# Changelog
22

33
All notable changes to this project will be documented in this file.
4-
See [Changelog Update](doc/changelog_update.md) if you want to update this
4+
See [Changelog Update](book/src/development/infrastructure/changelog_update.md) if you want to update this
55
document.
66

77
## Unreleased / In Rust Nightly
88

9-
[d0cf3481...master](https://github.com/rust-lang/rust-clippy/compare/d0cf3481...master)
9+
[7c21f91b...master](https://github.com/rust-lang/rust-clippy/compare/7c21f91b...master)
10+
11+
## Rust 1.62
12+
13+
Current stable, released 2022-06-30
14+
15+
[d0cf3481...7c21f91b](https://github.com/rust-lang/rust-clippy/compare/d0cf3481...7c21f91b)
16+
17+
### New Lints
18+
19+
* [`large_include_file`]
20+
[#8727](https://github.com/rust-lang/rust-clippy/pull/8727)
21+
* [`cast_abs_to_unsigned`]
22+
[#8635](https://github.com/rust-lang/rust-clippy/pull/8635)
23+
* [`err_expect`]
24+
[#8606](https://github.com/rust-lang/rust-clippy/pull/8606)
25+
* [`unnecessary_owned_empty_strings`]
26+
[#8660](https://github.com/rust-lang/rust-clippy/pull/8660)
27+
* [`empty_structs_with_brackets`]
28+
[#8594](https://github.com/rust-lang/rust-clippy/pull/8594)
29+
* [`crate_in_macro_def`]
30+
[#8576](https://github.com/rust-lang/rust-clippy/pull/8576)
31+
* [`needless_option_take`]
32+
[#8665](https://github.com/rust-lang/rust-clippy/pull/8665)
33+
* [`bytes_count_to_len`]
34+
[#8711](https://github.com/rust-lang/rust-clippy/pull/8711)
35+
* [`is_digit_ascii_radix`]
36+
[#8624](https://github.com/rust-lang/rust-clippy/pull/8624)
37+
* [`await_holding_invalid_type`]
38+
[#8707](https://github.com/rust-lang/rust-clippy/pull/8707)
39+
* [`trim_split_whitespace`]
40+
[#8575](https://github.com/rust-lang/rust-clippy/pull/8575)
41+
* [`pub_use`]
42+
[#8670](https://github.com/rust-lang/rust-clippy/pull/8670)
43+
* [`format_push_string`]
44+
[#8626](https://github.com/rust-lang/rust-clippy/pull/8626)
45+
* [`empty_drop`]
46+
[#8571](https://github.com/rust-lang/rust-clippy/pull/8571)
47+
* [`drop_non_drop`]
48+
[#8630](https://github.com/rust-lang/rust-clippy/pull/8630)
49+
* [`forget_non_drop`]
50+
[#8630](https://github.com/rust-lang/rust-clippy/pull/8630)
51+
52+
### Moves and Deprecations
53+
54+
* Move [`only_used_in_recursion`] to `nursery` (now allow-by-default)
55+
[#8783](https://github.com/rust-lang/rust-clippy/pull/8783)
56+
* Move [`stable_sort_primitive`] to `pedantic` (now allow-by-default)
57+
[#8716](https://github.com/rust-lang/rust-clippy/pull/8716)
58+
59+
### Enhancements
60+
61+
* Remove overlap between [`manual_split_once`] and [`needless_splitn`]
62+
[#8631](https://github.com/rust-lang/rust-clippy/pull/8631)
63+
* [`map_identity`]: Now checks for needless `map_err`
64+
[#8487](https://github.com/rust-lang/rust-clippy/pull/8487)
65+
* [`extra_unused_lifetimes`]: Now checks for impl lifetimes
66+
[#8737](https://github.com/rust-lang/rust-clippy/pull/8737)
67+
* [`cast_possible_truncation`]: Now catches more cases with larger shift or divide operations
68+
[#8687](https://github.com/rust-lang/rust-clippy/pull/8687)
69+
* [`identity_op`]: Now checks for modulo expressions
70+
[#8519](https://github.com/rust-lang/rust-clippy/pull/8519)
71+
* [`panic`]: No longer lint in constant context
72+
[#8592](https://github.com/rust-lang/rust-clippy/pull/8592)
73+
* [`manual_split_once`]: Now lints manual iteration of `splitn`
74+
[#8717](https://github.com/rust-lang/rust-clippy/pull/8717)
75+
* [`self_named_module_files`], [`mod_module_files`]: Now handle relative module paths
76+
[#8611](https://github.com/rust-lang/rust-clippy/pull/8611)
77+
* [`unsound_collection_transmute`]: Now has better size and alignment checks
78+
[#8648](https://github.com/rust-lang/rust-clippy/pull/8648)
79+
* [`unnested_or_patterns`]: Ignore cases, where the suggestion would be longer
80+
[#8619](https://github.com/rust-lang/rust-clippy/pull/8619)
81+
82+
### False Positive Fixes
83+
84+
* [`rest_pat_in_fully_bound_structs`]: Now ignores structs marked with `#[non_exhaustive]`
85+
[#8690](https://github.com/rust-lang/rust-clippy/pull/8690)
86+
* [`needless_late_init`]: No longer lints `if let` statements, `let mut` bindings or instances that
87+
changes the drop order significantly
88+
[#8617](https://github.com/rust-lang/rust-clippy/pull/8617)
89+
* [`unnecessary_cast`]: No longer lints to casts to aliased or non-primitive types
90+
[#8596](https://github.com/rust-lang/rust-clippy/pull/8596)
91+
* [`init_numbered_fields`]: No longer lints type aliases
92+
[#8780](https://github.com/rust-lang/rust-clippy/pull/8780)
93+
* [`needless_option_as_deref`]: No longer lints for `as_deref_mut` on `Option` values that can't be moved
94+
[#8646](https://github.com/rust-lang/rust-clippy/pull/8646)
95+
* [`mistyped_literal_suffixes`]: Now ignores float literals without an exponent
96+
[#8742](https://github.com/rust-lang/rust-clippy/pull/8742)
97+
* [`undocumented_unsafe_blocks`]: Now ignores unsafe blocks from proc-macros and works better for sub-expressions
98+
[#8450](https://github.com/rust-lang/rust-clippy/pull/8450)
99+
* [`same_functions_in_if_condition`]: Now allows different constants, even if they have the same value
100+
[#8673](https://github.com/rust-lang/rust-clippy/pull/8673)
101+
* [`needless_match`]: Now checks for more complex types and ignores type coercion
102+
[#8549](https://github.com/rust-lang/rust-clippy/pull/8549)
103+
* [`assertions_on_constants`]: Now ignores constants from `cfg!` macros
104+
[#8614](https://github.com/rust-lang/rust-clippy/pull/8614)
105+
* [`indexing_slicing`]: Fix false positives with constant indices in
106+
[#8588](https://github.com/rust-lang/rust-clippy/pull/8588)
107+
* [`iter_with_drain`]: Now ignores iterator references
108+
[#8668](https://github.com/rust-lang/rust-clippy/pull/8668)
109+
* [`useless_attribute`]: Now allows [`redundant_pub_crate`] on `use` items
110+
[#8743](https://github.com/rust-lang/rust-clippy/pull/8743)
111+
* [`cast_ptr_alignment`]: Now ignores expressions, when used for unaligned reads and writes
112+
[#8632](https://github.com/rust-lang/rust-clippy/pull/8632)
113+
* [`wrong_self_convention`]: Now allows `&mut self` and no self as arguments for `is_*` methods
114+
[#8738](https://github.com/rust-lang/rust-clippy/pull/8738)
115+
* [`mut_from_ref`]: Only lint in unsafe code
116+
[#8647](https://github.com/rust-lang/rust-clippy/pull/8647)
117+
* [`redundant_pub_crate`]: Now allows macro exports
118+
[#8736](https://github.com/rust-lang/rust-clippy/pull/8736)
119+
* [`needless_match`]: Ignores cases where the else block expression is different
120+
[#8700](https://github.com/rust-lang/rust-clippy/pull/8700)
121+
* [`transmute_int_to_char`]: Now allows transmutations in `const` code
122+
[#8610](https://github.com/rust-lang/rust-clippy/pull/8610)
123+
* [`manual_non_exhaustive`]: Ignores cases, where the enum value is used
124+
[#8645](https://github.com/rust-lang/rust-clippy/pull/8645)
125+
* [`redundant_closure`]: Now ignores coerced closure
126+
[#8431](https://github.com/rust-lang/rust-clippy/pull/8431)
127+
* [`identity_op`]: Is now ignored in cases where extra brackets would be needed
128+
[#8730](https://github.com/rust-lang/rust-clippy/pull/8730)
129+
* [`let_unit_value`]: Now ignores cases which are used for type inference
130+
[#8563](https://github.com/rust-lang/rust-clippy/pull/8563)
131+
132+
### Suggestion Fixes/Improvements
133+
134+
* [`manual_split_once`]: Fixed incorrect suggestions for single result accesses
135+
[#8631](https://github.com/rust-lang/rust-clippy/pull/8631)
136+
* [`bytes_nth`]: Fix typos in the diagnostic message
137+
[#8403](https://github.com/rust-lang/rust-clippy/pull/8403)
138+
* [`mistyped_literal_suffixes`]: Now suggests the correct integer types
139+
[#8742](https://github.com/rust-lang/rust-clippy/pull/8742)
140+
* [`unnecessary_to_owned`]: Fixed suggestion based on the configured msrv
141+
[#8692](https://github.com/rust-lang/rust-clippy/pull/8692)
142+
* [`single_element_loop`]: Improve lint for Edition 2021 arrays
143+
[#8616](https://github.com/rust-lang/rust-clippy/pull/8616)
144+
* [`manual_bits`]: Now includes a cast for proper type conversion, when needed
145+
[#8677](https://github.com/rust-lang/rust-clippy/pull/8677)
146+
* [`option_map_unit_fn`], [`result_map_unit_fn`]: Fix some incorrect suggestions
147+
[#8584](https://github.com/rust-lang/rust-clippy/pull/8584)
148+
* [`collapsible_else_if`]: Add whitespace in suggestion
149+
[#8729](https://github.com/rust-lang/rust-clippy/pull/8729)
150+
* [`transmute_bytes_to_str`]: Now suggest `from_utf8_unchecked` in `const` context
151+
[#8612](https://github.com/rust-lang/rust-clippy/pull/8612)
152+
* [`map_clone`]: Improve message and suggestion based on the msrv
153+
[#8688](https://github.com/rust-lang/rust-clippy/pull/8688)
154+
* [`needless_late_init`]: Now shows the `let` statement where it was first initialized
155+
[#8779](https://github.com/rust-lang/rust-clippy/pull/8779)
156+
157+
### ICE Fixes
158+
159+
* [`only_used_in_recursion`]
160+
[#8691](https://github.com/rust-lang/rust-clippy/pull/8691)
161+
* [`cast_slice_different_sizes`]
162+
[#8720](https://github.com/rust-lang/rust-clippy/pull/8720)
163+
* [`iter_overeager_cloned`]
164+
[#8602](https://github.com/rust-lang/rust-clippy/pull/8602)
165+
* [`undocumented_unsafe_blocks`]
166+
[#8686](https://github.com/rust-lang/rust-clippy/pull/8686)
10167

11168
## Rust 1.61
12169

13-
Current stable, released 2022-05-19
170+
Released 2022-05-19
14171

15172
[57b3c4b...d0cf3481](https://github.com/rust-lang/rust-clippy/compare/57b3c4b...d0cf3481)
16173

@@ -207,7 +364,7 @@ Released 2022-04-07
207364

208365
* [`needless_borrow`]: Prevent mutable borrows being moved and suggest removing the borrow on method calls
209366
[#8217](https://github.com/rust-lang/rust-clippy/pull/8217)
210-
* [`chars_next_cmp`]: Correctly excapes the suggestion
367+
* [`chars_next_cmp`]: Correctly escapes the suggestion
211368
[#8376](https://github.com/rust-lang/rust-clippy/pull/8376)
212369
* [`explicit_write`]: Add suggestions for `write!`s with format arguments
213370
[#8365](https://github.com/rust-lang/rust-clippy/pull/8365)
@@ -1420,7 +1577,7 @@ Released 2021-03-25
14201577
* Add `cargo dev-lintcheck` tool to the Clippy Dev Tool
14211578
[#6469](https://github.com/rust-lang/rust-clippy/pull/6469)
14221579

1423-
[Roadmap]: https://github.com/rust-lang/rust-clippy/blob/master/doc/roadmap-2021.md
1580+
[Roadmap]: https://github.com/rust-lang/rust-clippy/blob/master/book/src/development/proposals/roadmap-2021.md
14241581
[Roadmap project page]: https://github.com/rust-lang/rust-clippy/projects/3
14251582

14261583
## Rust 1.50
@@ -2368,7 +2525,7 @@ Released 2019-09-26
23682525
* [`inherent_to_string_shadow_display`] [#4259](https://github.com/rust-lang/rust-clippy/pull/4259)
23692526
* [`type_repetition_in_bounds`] [#3766](https://github.com/rust-lang/rust-clippy/pull/3766)
23702527
* [`try_err`] [#4222](https://github.com/rust-lang/rust-clippy/pull/4222)
2371-
* Move `{unnnecessary,panicking}_unwrap` out of nursery [#4307](https://github.com/rust-lang/rust-clippy/pull/4307)
2528+
* Move `{unnecessary,panicking}_unwrap` out of nursery [#4307](https://github.com/rust-lang/rust-clippy/pull/4307)
23722529
* Extend the `use_self` lint to suggest uses of `Self::Variant` [#4308](https://github.com/rust-lang/rust-clippy/pull/4308)
23732530
* Improve suggestion for needless return [#4262](https://github.com/rust-lang/rust-clippy/pull/4262)
23742531
* Add auto-fixable suggestion for `let_unit` [#4337](https://github.com/rust-lang/rust-clippy/pull/4337)
@@ -3269,12 +3426,13 @@ Released 2018-09-13
32693426
[`AsRef`]: https://doc.rust-lang.org/std/convert/trait.AsRef.html
32703427
[configuration file]: ./rust-clippy#configuration
32713428
[pull3665]: https://github.com/rust-lang/rust-clippy/pull/3665
3272-
[adding_lints]: https://github.com/rust-lang/rust-clippy/blob/master/doc/adding_lints.md
3429+
[adding_lints]: https://github.com/rust-lang/rust-clippy/blob/master/book/src/development/adding_lints.md
32733430
[`README.md`]: https://github.com/rust-lang/rust-clippy/blob/master/README.md
32743431

32753432
<!-- lint disable no-unused-definitions -->
32763433
<!-- begin autogenerated links to lint list -->
32773434
[`absurd_extreme_comparisons`]: https://rust-lang.github.io/rust-clippy/master/index.html#absurd_extreme_comparisons
3435+
[`alloc_instead_of_core`]: https://rust-lang.github.io/rust-clippy/master/index.html#alloc_instead_of_core
32783436
[`allow_attributes_without_reason`]: https://rust-lang.github.io/rust-clippy/master/index.html#allow_attributes_without_reason
32793437
[`almost_complete_letter_range`]: https://rust-lang.github.io/rust-clippy/master/index.html#almost_complete_letter_range
32803438
[`almost_swapped`]: https://rust-lang.github.io/rust-clippy/master/index.html#almost_swapped
@@ -3484,6 +3642,7 @@ Released 2018-09-13
34843642
[`invalid_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#invalid_ref
34853643
[`invalid_regex`]: https://rust-lang.github.io/rust-clippy/master/index.html#invalid_regex
34863644
[`invalid_upcast_comparisons`]: https://rust-lang.github.io/rust-clippy/master/index.html#invalid_upcast_comparisons
3645+
[`invalid_utf8_in_unchecked`]: https://rust-lang.github.io/rust-clippy/master/index.html#invalid_utf8_in_unchecked
34873646
[`invisible_characters`]: https://rust-lang.github.io/rust-clippy/master/index.html#invisible_characters
34883647
[`is_digit_ascii_radix`]: https://rust-lang.github.io/rust-clippy/master/index.html#is_digit_ascii_radix
34893648
[`items_after_statements`]: https://rust-lang.github.io/rust-clippy/master/index.html#items_after_statements
@@ -3743,6 +3902,8 @@ Released 2018-09-13
37433902
[`skip_while_next`]: https://rust-lang.github.io/rust-clippy/master/index.html#skip_while_next
37443903
[`slow_vector_initialization`]: https://rust-lang.github.io/rust-clippy/master/index.html#slow_vector_initialization
37453904
[`stable_sort_primitive`]: https://rust-lang.github.io/rust-clippy/master/index.html#stable_sort_primitive
3905+
[`std_instead_of_alloc`]: https://rust-lang.github.io/rust-clippy/master/index.html#std_instead_of_alloc
3906+
[`std_instead_of_core`]: https://rust-lang.github.io/rust-clippy/master/index.html#std_instead_of_core
37463907
[`str_to_string`]: https://rust-lang.github.io/rust-clippy/master/index.html#str_to_string
37473908
[`string_add`]: https://rust-lang.github.io/rust-clippy/master/index.html#string_add
37483909
[`string_add_assign`]: https://rust-lang.github.io/rust-clippy/master/index.html#string_add_assign

src/tools/clippy/CONTRIBUTING.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ All contributors are expected to follow the [Rust Code of Conduct].
1616
- [The Clippy book](#the-clippy-book)
1717
- [High level approach](#high-level-approach)
1818
- [Finding something to fix/improve](#finding-something-to-fiximprove)
19-
- [Writing code](#writing-code)
2019
- [Getting code-completion for rustc internals to work](#getting-code-completion-for-rustc-internals-to-work)
2120
- [IntelliJ Rust](#intellij-rust)
2221
- [Rust Analyzer](#rust-analyzer)
@@ -115,11 +114,11 @@ As of [#6869][6869], [`rust-analyzer`][ra_homepage] can understand that Clippy u
115114
using `extern crate` when `package.metadata.rust-analyzer.rustc_private` is set to `true` in Clippy's `Cargo.toml.`
116115
You will require a `nightly` toolchain with the `rustc-dev` component installed.
117116
Make sure that in the `rust-analyzer` configuration, you set
118-
```
119-
{ "rust-analyzer.rustcSource": "discover" }
117+
```json
118+
{ "rust-analyzer.rustc.source": "discover" }
120119
```
121120
and
122-
```
121+
```json
123122
{ "rust-analyzer.updates.channel": "nightly" }
124123
```
125124
You should be able to see information on things like `Expr` or `EarlyContext` now if you hover them, also

src/tools/clippy/book/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Clippy Book
22

33
This is the source for the Clippy Book. See the
4-
[book](src/infrastructure/book.md) for more information.
4+
[book](src/development/infrastructure/book.md) for more information.

src/tools/clippy/book/src/development/basics.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ This document explains the basics for hacking on Clippy. Besides others, this
44
includes how to build and test Clippy. For a more in depth description on the
55
codebase take a look at [Adding Lints] or [Common Tools].
66

7-
[Adding Lints]: https://github.com/rust-lang/rust-clippy/blob/master/doc/adding_lints.md
8-
[Common Tools]: https://github.com/rust-lang/rust-clippy/blob/master/doc/common_tools_writing_lints.md
7+
[Adding Lints]: https://github.com/rust-lang/rust-clippy/blob/master/book/src/development/adding_lints.md
8+
[Common Tools]: https://github.com/rust-lang/rust-clippy/blob/master/book/src/development/common_tools_writing_lints.md
99

1010
- [Basics for hacking on Clippy](#basics-for-hacking-on-clippy)
1111
- [Get the Code](#get-the-code)
@@ -59,7 +59,7 @@ cargo uitest
5959
# only run UI tests starting with `test_`
6060
TESTNAME="test_" cargo uitest
6161
# only run dogfood tests
62-
cargo test --test dogfood
62+
cargo dev dogfood
6363
```
6464

6565
If the output of a [UI test] differs from the expected output, you can update
@@ -91,10 +91,14 @@ cargo dev fmt
9191
cargo dev update_lints
9292
# create a new lint and register it
9393
cargo dev new_lint
94+
# deprecate a lint and attempt to remove code relating to it
95+
cargo dev deprecate
9496
# automatically formatting all code before each commit
9597
cargo dev setup git-hook
9698
# (experimental) Setup Clippy to work with IntelliJ-Rust
9799
cargo dev setup intellij
100+
# runs the `dogfood` tests
101+
cargo dev dogfood
98102
```
99103

100104
More about intellij command usage and reasons

src/tools/clippy/book/src/development/infrastructure/changelog_update.md

+3
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,9 @@ As section headers, we use:
9595
Please also be sure to update the Beta/Unreleased sections at the top with the
9696
relevant commit ranges.
9797

98+
If you have the time, it would be appreciated if you double-check, that the
99+
`#[clippy::version]` attributes for the added lints contains the correct version.
100+
98101
[changelog]: https://github.com/rust-lang/rust-clippy/blob/master/CHANGELOG.md
99102
[forge]: https://forge.rust-lang.org/
100103
[rust_master_tools]: https://github.com/rust-lang/rust/tree/master/src/tools/clippy

src/tools/clippy/book/src/usage.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ For more information on configuring lint levels, see the [rustc documentation].
5656
Clippy has lint groups which are allow-by-default. This means, that you will
5757
have to enable the lints in those groups manually.
5858

59-
For a full list of all lints with their description and examples, please refere
59+
For a full list of all lints with their description and examples, please refer
6060
to [Clippy's lint list]. The two most important allow-by-default groups are
6161
described below:
6262

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
use crate::clippy_project_root;
2+
use std::process::Command;
3+
4+
/// # Panics
5+
///
6+
/// Panics if unable to run the dogfood test
7+
pub fn dogfood(fix: bool, allow_dirty: bool, allow_staged: bool) {
8+
let mut cmd = Command::new("cargo");
9+
10+
cmd.current_dir(clippy_project_root())
11+
.args(["test", "--test", "dogfood"])
12+
.args(["--features", "internal"])
13+
.args(["--", "dogfood_clippy"]);
14+
15+
let mut dogfood_args = Vec::new();
16+
if fix {
17+
dogfood_args.push("--fix");
18+
}
19+
20+
if allow_dirty {
21+
dogfood_args.push("--allow-dirty");
22+
}
23+
24+
if allow_staged {
25+
dogfood_args.push("--allow-staged");
26+
}
27+
28+
cmd.env("__CLIPPY_DOGFOOD_ARGS", dogfood_args.join(" "));
29+
30+
let output = cmd.output().expect("failed to run command");
31+
32+
println!("{}", String::from_utf8_lossy(&output.stdout));
33+
}

0 commit comments

Comments
 (0)