Serial
8dfea74367
Remove extra newlines in [significant_drop_in_scrutinee
] docs
2022-07-20 21:35:11 -04:00
alex-semenyuk
27d49b08d5
Enable test for entrypoint_recursion for windows
2022-07-20 21:41:12 +03:00
Jason Newcomb
a2f9b93116
Don't lint assign_op_pattern
when the suggestion would cause borrowck errors
2022-07-20 10:23:07 -04:00
Oli Scherer
bcd2241c9a
Revert "Rollup merge of #98582 - oli-obk:unconstrained_opaque_type, r=estebank"
...
This reverts commit 6f8fb911ad504b77549cf3256a09465621beab9d, reversing
changes made to 7210e46dc69a4b197a313d093fe145722c248b7d.
2022-07-20 07:55:58 +00:00
bors
7c8e1bff90
Auto merge of #9207 - Jarcho:todo_arm, r=giraffate
...
Check for `todo!` on every expression in `SpanlessEq`
fixes #9204
changelog: [`match_same_arms`](https://rust-lang.github.io/rust-clippy/master/index.html#match_same_arms ): Don't lint on arms with `todo!`
2022-07-20 01:38:00 +00:00
bors
e98b3ca87b
Auto merge of #9210 - evantypanski:issue9160, r=Manishearth
...
Fix suggestion causing error for [`needless_borrow`] function in field
Fixes #9160
changelog: [`needless_borrow`]: Fix suggestion removing parens from calling a field
2022-07-19 21:16:34 +00:00
Evan Typanski
40340745a8
Use parens around [needless_borrow
] field calls
2022-07-19 15:17:24 -04:00
Jason Newcomb
95c759157c
Check for todo!
on every expression in SpanlessEq
2022-07-19 09:57:18 -04:00
Michael Goulet
30a9533570
Mention first and last macro in backtrace
2022-07-19 03:07:54 +00:00
Caio
31e5465f8a
Add Arithmetic lint
2022-07-18 14:29:45 -03:00
bors
e57c6d6f21
Auto merge of #9202 - PaulTheNeko:patch-1, r=Manishearth
...
Fix typo in alloc_instead_of_core
The description previously claimed it ensures items are imported from alloc, to ensure a crate won't require alloc, which can't be true.
I'm not sure know how to better phrase the changelog entry below.
changelog: [`alloc_instead_of_core`]: fixed typo in description
2022-07-18 16:10:06 +00:00
Paul
c94ca1c625
Fix typo in alloc_instead_of_core
...
The description previously claimed it ensures items are imported from alloc, to ensure a crate won't require alloc, which can't be true.
2022-07-18 16:24:30 +02:00
bors
cce617165d
Auto merge of #9148 - arieluy:then_some_unwrap_or, r=Jarcho
...
Add new lint `obfuscated_if_else`
part of #9100 , additional commits could make it work with `then` and `unwrap_or_else` as well
changelog: Add new lint `obfuscated_if_else`
2022-07-18 12:45:11 +00:00
bors
bf70865cf4
Auto merge of #9199 - Xiretza:unused-self-exported-api, r=Jarcho
...
unused_self: respect avoid-breaking-exported-api
```
changelog: [`unused_self`]: Now respects the `avoid-breaking-exported-api` config option
```
Fixes #9195 .
I mostly copied the implementation from `unnecessary_wraps`, since I don't have much understanding of rustc internals.
2022-07-18 12:29:22 +00:00
bors
f4c9183531
Auto merge of #9146 - arieluy:type_params, r=dswij
...
Fix `mismatching_type_param_order` false positive
changelog: Don't lint `mismatching_type_param_order` on complicated generic params
fixes #8962
2022-07-18 10:13:39 +00:00
Xiretza
7a5965b459
unused_self: respect avoid-breaking-exported-api
2022-07-18 10:57:08 +02:00
bors
79a0d234fe
Auto merge of #9176 - JoelMon:patch-1, r=flip1995
...
Rephrased text to remove passive voice for a more active one.
changelog: none
2022-07-18 07:46:30 +00:00
Joel Montes de Oca
659a9ac8bf
Rephrased text to remove passive voice for a more active one.
...
Co-authored-by: Alex <69764315+Serial-ATA@users.noreply.github.com>
2022-07-18 09:45:01 +02:00
Philipp Krones
7d4daaa8fa
Merge commit 'fdb84cbfd25908df5683f8f62388f663d9260e39' into clippyup
2022-07-18 09:39:37 +02:00
Samuel E. Moelius III
5b3300dc29
Add ui_cargo_toml_metadata
test
2022-07-17 22:17:58 -04:00
Ariel Uy
9ff7c91100
Add new lint obfuscated_if_else
...
New lint suggests using `if .. else ..` instead of
`.then_some(..).unwrap_or(..)`.
2022-07-17 18:44:49 -07:00
bors
fdb84cbfd2
Auto merge of #9196 - alex-semenyuk:invalid_regex, r=Jarcho
...
Fix example for `clippy::invalid_regex`
Close #9194
changelog: previous example doesn't trigger lint
2022-07-17 23:08:04 +00:00
alexey semenyuk
142898e544
Fix example for clippy::invalid_regex
2022-07-18 00:35:34 +03:00
Ariel Uy
8cf39a8c19
Fix mismatching_type_param_order
false positive
...
Previously was giving false positive when an impl had a nontrivial
generic argument such as a tuple. Don't lint on these cases.
2022-07-17 11:23:09 -07:00
Jason Newcomb
d602ab1445
Don't lint exlipicit_auto_deref
when other adjustments are needed
2022-07-17 11:14:08 -04:00
Jason Newcomb
84e03b6215
Don't lint explicit_auto_deref
on dyn Trait
return
2022-07-17 11:14:07 -04:00
Jason Newcomb
9ce0f82b8a
Include the borrow in the suggestion for explicit_auto_deref
2022-07-17 11:14:07 -04:00
Jason Newcomb
c990e2922a
Don't suggest using auto deref for block expressions
2022-07-17 11:14:07 -04:00
bors
3a4e4575ed
Auto merge of #9022 - alex-semenyuk:needless_option_take_more_docs, r=Jarcho
...
`NEEDLESS_OPTION_TAKE` doc improvements
changelog: More info on `NEEDLESS_OPTION_TAKE`
2022-07-17 13:33:40 +00:00
alexey semenyuk
e7804355de
NEEDLESS_OPTION_TAKE doc improvements
...
NEEDLESS_OPTION_TAKE doc improvements
NEEDLESS_OPTION_TAKE doc improvements
NEEDLESS_OPTION_TAKE doc improvements
NEEDLESS_OPTION_TAKE doc improvements
NEEDLESS_OPTION_TAKE doc improvements
NEEDLESS_OPTION_TAKE doc improvements
NEEDLESS_OPTION_TAKE doc improvements
2022-07-17 16:13:58 +03:00
Caio
f88a1399bb
Stabilize let_chains
2022-07-16 20:17:58 -03:00
Matthias Krüger
2300da4412
Rollup merge of #99342 - TaKO8Ki:avoid-symbol-to-string-conversions, r=compiler-errors
...
Avoid some `Symbol` to `String` conversions
This patch removes some Symbol to String conversions.
2022-07-16 22:30:56 +02:00
bors
4562dd0a8e
Auto merge of #9171 - Serial-ATA:highlight-js, r=xFrednet
...
Update highlight.js
changelog: none
With [highlight.js v11.6.0](https://github.com/highlightjs/highlight.js/releases/tag/11.6.0 ), the lint list can finally update from `9.5.0`. No more EOL warning in console! 😄
I also made it switch to the `github-dark` theme when using `coal`, instead of just always using the normal github light theme.
r? `@xFrednet`
2022-07-16 20:02:44 +00:00
Takayuki Maeda
a2c6252cd3
avoid some Symbol
to String
conversions
2022-07-17 04:09:20 +09:00
bors
b1e2578f83
Auto merge of #9172 - Guilherme-Vasconcelos:master, r=flip1995
...
Rename rustcSource in contributing documentation
According to [rust-analyzer docs](https://rust-analyzer.github.io/manual.html#toolchain:~:text=rust%2Danalyzer.rustc.source ), rustcSource has been renamed to rustc.source.
changelog: none
2022-07-15 16:04:30 +00:00
Oli Scherer
417a600c30
Introduce opaque type to hidden type projection
2022-07-15 15:49:22 +00:00
Guilherme-Vasconcelos
b707a23814
Rename rustcSource in contributing docs
2022-07-15 12:36:57 -03:00
Aaron Christiansen
4c43aa7053
Fix suggestion for async
in redundant_closure_call
...
Fix redundant_closure_call for single-expression async closures
Add Sugg::asyncify
Use Sugg for redundant_closure_call implementation
2022-07-15 15:49:04 +01:00
bors
aa0706bf20
Auto merge of #9178 - alex-semenyuk:match_like_matches_macro_fix, r=Jarcho
...
match_like_matches_macro does not trigger when one arm contains conta…
Close #9163
changelog: none
2022-07-15 13:57:46 +00:00
bors
fe6814508f
Auto merge of #9174 - flip1995:rustup, r=Jarcho
...
Rustup
r? `@ghost`
changelog: none
2022-07-15 13:38:01 +00:00
bors
c9f0d1aca7
Auto merge of #9103 - i509VCB:std-instead-of-core, r=Manishearth
...
Add `std_instead_of_core`, `std_instead_of_alloc`, `alloc_instead_of_core`
Closes #7724
Introduces 3 new lints:
- `std_instead_of_core` - lints items resolved through `std` which are available in `core`
- `std_instead_of_alloc` - lints items resolved through `std` which are available in `alloc`
- `alloc_instead_of_core` - lints items resolved through `alloc` which are available in `core`
Though the original issue only mentions `std_instead_of_alloc`, the other two lints could be useful as well.
questions:
- what do I call the file the lints live in? I was thinking `std_reexports`?
changelog: new lint's: [`std_instead_of_core`], [`std_instead_of_alloc`], [`alloc_instead_of_core`]
2022-07-15 11:46:24 +00:00
Philipp Krones
9178ba1f55
Bump nightly version -> 2022-07-15
2022-07-15 09:49:38 +02:00
Philipp Krones
f074034590
Merge remote-tracking branch 'upstream/master' into rustup
2022-07-15 09:49:15 +02:00
alex-semenyuk
2894df3409
match_like_matches_macro does not trigger when one arm contains contains a block with only a bool literal
2022-07-15 09:15:31 +03:00
i509VCB
2f825db578
std_instead_of_core, std_instead_of_alloc, alloc_instead_of_core
2022-07-14 16:05:52 -05:00
bors
6dc9746147
Auto merge of #95956 - yaahc:stable-in-unstable, r=cjgillot
...
Support unstable moves via stable in unstable items
part of https://rust-lang.zulipchat.com/#narrow/stream/131828-t-compiler/topic/moving.20items.20to.20core.20unstably and a blocker of https://github.com/rust-lang/rust/pull/90328 .
The libs-api team needs the ability to move an already stable item to a new location unstably, in this case for Error in core. Otherwise these changes are insta-stable making them much harder to merge.
This PR attempts to solve the problem by checking the stability of path segments as well as the last item in the path itself, which is currently the only thing checked.
2022-07-14 13:42:09 +00:00
bors
0f5a38f2d6
Auto merge of #9170 - Rqnsom:box_collection, r=Jarcho
...
[`box_collection`]: raise warn for all std collections
So far, only [`Vec`, `String`, `HashMap`] were considered.
Extend collection checklist for this lint with:
- `HashSet`
- `VecDeque`
- `LinkedList`
- `BTreeMap`
- `BTreeSet`
- `BinaryHeap`
changelog: [`box_collection`]: raise warn for all std collections
2022-07-14 13:02:06 +00:00
bors
10e85efc53
Auto merge of #9161 - Victor-N-Suadicani:move_format_push_string_to_pedantic, r=flip1995
...
Move format_push_string to restriction
Fixes #9077 (kinda) by moving the lint to the restriction group. As I noted in that issue, I think the suggested change is too much and as the OP of the issue points out, the ramifications of the change are not necessarily easily understood. As such I don't think the lint should be enabled by default.
changelog: [`format_push_string`]: moved to restriction (see #9077 ).
2022-07-14 12:11:34 +00:00
Victor Nordam Suadicani
43ac256cd1
Add Known problems section
2022-07-14 13:26:56 +02:00
bors
c9a78ee274
Auto merge of #99231 - Dylan-DPC:rollup-0tl8c0o, r=Dylan-DPC
...
Rollup of 5 pull requests
Successful merges:
- #97720 (Always create elided lifetime parameters for functions)
- #98315 (Stabilize `core::ffi:c_*` and rexport in `std::ffi`)
- #98705 (Implement `for<>` lifetime binder for closures)
- #99126 (remove allow(rustc::potential_query_instability) in rustc_span)
- #99139 (Give a better error when `x dist` fails for an optional tool)
Failed merges:
r? `@ghost`
`@rustbot` modify labels: rollup
2022-07-14 11:00:30 +00:00