-
Notifications
You must be signed in to change notification settings - Fork 12.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Clippyup #92849
Clippyup #92849
Commits on Oct 20, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 1788cfd - Browse repository at this point
Copy the full SHA 1788cfdView commit details
Commits on Dec 23, 2021
-
Configuration menu - View commit details
-
Copy full SHA for d5cbae9 - Browse repository at this point
Copy the full SHA d5cbae9View commit details
Commits on Dec 28, 2021
-
Configuration menu - View commit details
-
Copy full SHA for dfd3254 - Browse repository at this point
Copy the full SHA dfd3254View commit details
Commits on Dec 29, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 828ddbe - Browse repository at this point
Copy the full SHA 828ddbeView commit details
Commits on Dec 30, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 97ab44c - Browse repository at this point
Copy the full SHA 97ab44cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2b5257e - Browse repository at this point
Copy the full SHA 2b5257eView commit details
Commits on Dec 31, 2021
-
Auto merge of rust-lang#92252 - GuillaumeGomez:update-pulldown, r=cam…
…elid,xFrednet Update pulldown-cmark version to 0.9 Fixes rust-lang#92206. r? `@camelid`
Configuration menu - View commit details
-
Copy full SHA for 1f3d6a6 - Browse repository at this point
Copy the full SHA 1f3d6a6View commit details -
Extend [
unused_io_amount
] to cover AsyncRead and AsyncWrite.Clippy helpfully warns about code like this, telling you that you probably meant "write_all": fn say_hi<W:Write>(w: &mut W) { w.write(b"hello").unwrap(); } This patch attempts to extend the lint so it also covers this case: async fn say_hi<W:AsyncWrite>(w: &mut W) { w.write(b"hello").await.unwrap(); } (I've run into this second case several times in my own programming, and so have my coworkers, so unless we're especially accident-prone in this area, it's probably worth addressing?) This patch covers the Async{Read,Write}Ext traits in futures-rs, and in tokio, since both are quite widely used. changelog: [`unused_io_amount`] now supports AsyncReadExt and AsyncWriteExt.
Configuration menu - View commit details
-
Copy full SHA for 65d1f83 - Browse repository at this point
Copy the full SHA 65d1f83View commit details -
unused_io_amount: Use span_lint_and_help.
This improves the quality of the genrated output and makes it more in line with other lint messages. changelog: [`unused_io_amount`]: Improve help text
Configuration menu - View commit details
-
Copy full SHA for b6bcf0c - Browse repository at this point
Copy the full SHA b6bcf0cView commit details -
Auto merge of rust-lang#8179 - nmathewson:unused_async_io_amount, r=x…
…Frednet Extend unused_io_amount to cover async io. Clippy helpfully warns about code like this, telling you that you probably meant "write_all": fn say_hi<W:Write>(w: &mut W) { w.write(b"hello").unwrap(); } This patch attempts to extend the lint so it also covers this case: async fn say_hi<W:AsyncWrite>(w: &mut W) { w.write(b"hello").await.unwrap(); } (I've run into this second case several times in my own programming, and so have my coworkers, so unless we're especially accident-prone in this area, it's probably worth addressing?) Since this is my first attempt at a clippy patch, I've probably made all kinds of mistakes: please help me fix them? I'd like to learn more here. Open questions I have: * Should this be a separate lint from unused_io_amount? Maybe unused_async_io_amount? If so, how should I structure their shared code? * Should this cover tokio's AsyncWrite too? * Is it okay to write lints for stuff that isn't part of the standard library? I see that "regex" also has lints, and I figure that "futures" is probably okay too, since it's an official rust-lang repository. * What other tests are needed? * How should I improve the code? Thanks for your time! --- changelog: [`unused_io_amount`] now supports async read and write traits
Configuration menu - View commit details
-
Copy full SHA for 490566b - Browse repository at this point
Copy the full SHA 490566bView commit details -
Auto merge of rust-lang#8193 - ebobrow:redundant_closure_fp, r=Manish…
…earth fix [`redundant_closure`] fp with `Rc<F>`/`Arc<F>` fixes rust-lang#8073 changelog: don't trigger [`redundant_closure`] on `Arc<F>` or `Rc<F>`
Configuration menu - View commit details
-
Copy full SHA for c736a63 - Browse repository at this point
Copy the full SHA c736a63View commit details
Commits on Jan 1, 2022
-
wrong_self_convention: Match
SelfKind::No
more restrictivelyThe `wrong_self_convention` lint uses a `SelfKind` type to decide whether a method has the right kind of "self" for its name, or whether the kind of "self" it has makes its name confusable for a method in a common trait. One possibility is `SelfKind::No`, which is supposed to mean "No `self`". Previously, SelfKind::No matched everything _except_ Self, including references to Self. This patch changes it to match Self, &Self, &mut Self, Box<Self>, and so on. For example, this kind of method was allowed before: ``` impl S { // Should trigger the lint, because // "methods called `is_*` usually take `self` by reference or no `self`" fn is_foo(&mut self) -> bool { todo!() } } ``` But since SelfKind::No matched "&mut self", no lint was triggered (see rust-lang#8142). With this patch, the code above now gives a lint as expected. Fixes rust-lang#8142 changelog: [`wrong_self_convention`] rejects `self` references in more cases
Configuration menu - View commit details
-
Copy full SHA for 3d41358 - Browse repository at this point
Copy the full SHA 3d41358View commit details -
Make tidy check for magic numbers that spell things
Remove existing problematic cases.
Configuration menu - View commit details
-
Copy full SHA for f5bbd1b - Browse repository at this point
Copy the full SHA f5bbd1bView commit details -
return_self_not_must_use document
#[must_use]
on the typeInspired by a discussion in rust-lang/rust-clippy#8197 --- r? `@llogiq` changelog: none The lint is this on nightly, therefore no changelog entry for you xD
Configuration menu - View commit details
-
Copy full SHA for 262b148 - Browse repository at this point
Copy the full SHA 262b148View commit details -
Auto merge of rust-lang#8209 - xFrednet:8197-mention-attribute-on-str…
…uct, r=llogiq return_self_not_must_use document `#[must_use]` on the type Inspired by a discussion in rust-lang/rust-clippy#8197 --- r? `@llogiq` changelog: none The lint is this on nightly, therefore no changelog entry for you xD
Configuration menu - View commit details
-
Copy full SHA for 7616eb0 - Browse repository at this point
Copy the full SHA 7616eb0View commit details
Commits on Jan 2, 2022
-
Auto merge of rust-lang#8208 - nmathewson:selfkind_no_fix, r=xFrednet
wrong_self_convention: Match `SelfKind::No` more restrictively The `wrong_self_convention` lint uses a `SelfKind` type to decide whether a method has the right kind of "self" for its name, or whether the kind of "self" it has makes its name confusable for a method in a common trait. One possibility is `SelfKind::No`, which is supposed to mean "No `self`". Previously, SelfKind::No matched everything _except_ Self, including references to Self. This patch changes it to match Self, &Self, &mut Self, Box<Self>, and so on. For example, this kind of method was allowed before: ``` impl S { // Should trigger the lint, because // "methods called `is_*` usually take `self` by reference or no `self`" fn is_foo(&mut self) -> bool { todo!() } } ``` But since SelfKind::No matched "&mut self", no lint was triggered (see rust-lang#8142). With this patch, the code above now gives a lint as expected. fixes rust-lang#8142 changelog: [`wrong_self_convention`] rejects `self` references in more cases
Configuration menu - View commit details
-
Copy full SHA for b25dbc6 - Browse repository at this point
Copy the full SHA b25dbc6View commit details -
erasing_op lint ignored when output type is different from the non-co…
…nst one
Wigy committedJan 2, 2022 Configuration menu - View commit details
-
Copy full SHA for e8b6b2a - Browse repository at this point
Copy the full SHA e8b6b2aView commit details -
Auto merge of rust-lang#8204 - wigy-opensource-developer:fix-7210, r=…
…xFrednet [`erasing_op`] lint ignored when operation `Output` type is different from the type of constant `0` fixes rust-lang#7210 changelog: [`erasing_op`] lint ignored when operation `Output` type is different from the type of constant `0`
Configuration menu - View commit details
-
Copy full SHA for 8419108 - Browse repository at this point
Copy the full SHA 8419108View commit details
Commits on Jan 3, 2022
-
Rollup merge of rust-lang#90102 - nbdd0121:box3, r=jonas-schievink
Remove `NullOp::Box` Follow up of rust-lang#89030 and MCP rust-lang/compiler-team#460. ~1 month later nothing seems to be broken, apart from a small regression that rust-lang#89332 (1aac85bb716c09304b313d69d30d74fe7e8e1a8e) shows could be regained by remvoing the diverging path, so it shall be safe to continue and remove `NullOp::Box` completely. r? `@jonas-schievink` `@rustbot` label T-compiler
Configuration menu - View commit details
-
Copy full SHA for 6975071 - Browse repository at this point
Copy the full SHA 6975071View commit details -
Configuration menu - View commit details
-
Copy full SHA for 19cfcd5 - Browse repository at this point
Copy the full SHA 19cfcd5View commit details -
Auto merge of rust-lang#8216 - pmnoxx:piotr-fix-clippy-warnings, r=xF…
…rednet Fix `clippy::use-self`` warning in ` src/main.rs` `ClippyCmd` warnings gets generated due to addition of `clippy::use-self`. This PR fixes that. ``` warning: unnecessary structure name repetition --> src/main.rs:99:9 | 99 | ClippyCmd { | ^^^^^^^^^ help: use the applicable keyword: `Self` | = note: `-W clippy::use-self` implied by `-W clippy::nursery` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#use_self ``` --- changelog: none
Configuration menu - View commit details
-
Copy full SHA for 3ea7784 - Browse repository at this point
Copy the full SHA 3ea7784View commit details
Commits on Jan 4, 2022
-
Configuration menu - View commit details
-
Copy full SHA for ff58efb - Browse repository at this point
Copy the full SHA ff58efbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 00da1b8 - Browse repository at this point
Copy the full SHA 00da1b8View commit details -
Configuration menu - View commit details
-
Copy full SHA for a7097b8 - Browse repository at this point
Copy the full SHA a7097b8View commit details -
Auto merge of rust-lang#8220 - Jarcho:manual_swap_8154, r=camsteffen
Consider auto-deref when linting `manual_swap` fixes rust-lang#8154 changelog: Don't lint `manual_swap` when a field access involves auto-deref
Configuration menu - View commit details
-
Copy full SHA for 0e28e38 - Browse repository at this point
Copy the full SHA 0e28e38View commit details -
Check for full equality in
type_repetition_in_bounds
rather than ju……st equal hashes
Configuration menu - View commit details
-
Copy full SHA for 2dd216a - Browse repository at this point
Copy the full SHA 2dd216aView commit details -
Rollup merge of rust-lang#91907 - lcnr:const-arg-infer, r=BoxyUwU
Allow `_` as the length of array types and repeat expressions r? `@BoxyUwU` cc `@varkor`
Configuration menu - View commit details
-
Copy full SHA for d7a6033 - Browse repository at this point
Copy the full SHA d7a6033View commit details -
changelog: none Sorry, this is a big one. A lot of interrelated changes and I wanted to put the new utils to use to make sure they are somewhat battle-tested. We may want to divide some of the lint-specific refactoring commits into batches for smaller reviewing tasks. I could also split into more PRs. Introduces a bunch of new utils at `clippy_utils::macros::...`. Please read through the docs and give any feedback! I'm happy to introduce `MacroCall` and various functions to retrieve an instance. It feels like the missing puzzle piece. I'm also introducing `ExpnId` from rustc as "useful for Clippy too". `@rust-lang/clippy` Fixes rust-lang#7843 by not parsing every node of macro implementations, at least the major offenders. I probably want to get rid of `is_expn_of` at some point.
Configuration menu - View commit details
-
Copy full SHA for 786f874 - Browse repository at this point
Copy the full SHA 786f874View commit details -
Auto merge of rust-lang#8219 - camsteffen:macro-decoupling, r=llogiq
New macro utils changelog: none Sorry, this is a big one. A lot of interrelated changes and I wanted to put the new utils to use to make sure they are somewhat battle-tested. We may want to divide some of the lint-specific refactoring commits into batches for smaller reviewing tasks. I could also split into more PRs. Introduces a bunch of new utils at `clippy_utils::macros::...`. Please read through the docs and give any feedback! I'm happy to introduce `MacroCall` and various functions to retrieve an instance. It feels like the missing puzzle piece. I'm also introducing `ExpnId` from rustc as "useful for Clippy too". `@rust-lang/clippy` Fixes rust-lang#7843 by not parsing every node of macro implementations, at least the major offenders. I probably want to get rid of `is_expn_of` at some point.
Configuration menu - View commit details
-
Copy full SHA for ba03dc7 - Browse repository at this point
Copy the full SHA ba03dc7View commit details
Commits on Jan 5, 2022
-
Auto merge of rust-lang#8223 - camsteffen:remove-in-macro, r=llogiq
Remove in_macro from clippy_utils changelog: none Previously done in rust-lang#7897 but reverted in rust-lang#8170. I'd like to keep `in_macro` out of utils because if a span is from expansion in any way (desugaring or macro), we should not proceed without understanding the nature of the expansion IMO. r? `@llogiq`
Configuration menu - View commit details
-
Copy full SHA for d5dcda2 - Browse repository at this point
Copy the full SHA d5dcda2View commit details -
Auto merge of rust-lang#8224 - Jarcho:type_repetition_in_bounds_8162,…
… r=llogiq Fix `type_repetition_in_bounds` fixes rust-lang#7360 fixes rust-lang#8162 fixes rust-lang#8056 changelog: Check for full equality in `type_repetition_in_bounds` rather than just equal hashes
Configuration menu - View commit details
-
Copy full SHA for 20f2a89 - Browse repository at this point
Copy the full SHA 20f2a89View commit details -
Auto merge of rust-lang#8221 - Jarcho:while_let_on_iterator_8113, r=l…
…logiq Better detect when a field can be moved from in `while_let_on_iterator` fixes rust-lang#8113 changelog: Better detect when a field can be moved from in `while_let_on_iterator`
Configuration menu - View commit details
-
Copy full SHA for 92048f4 - Browse repository at this point
Copy the full SHA 92048f4View commit details -
Configuration menu - View commit details
-
Copy full SHA for a4ebf6f - Browse repository at this point
Copy the full SHA a4ebf6fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 14f3445 - Browse repository at this point
Copy the full SHA 14f3445View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3925def - Browse repository at this point
Copy the full SHA 3925defView commit details -
Lint
iter_not_returning_iterator
on the trait definition rather tha……n the implementation
Configuration menu - View commit details
-
Copy full SHA for 2cc38a2 - Browse repository at this point
Copy the full SHA 2cc38a2View commit details -
Configuration menu - View commit details
-
Copy full SHA for d98339d - Browse repository at this point
Copy the full SHA d98339dView commit details
Commits on Jan 6, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 94fe671 - Browse repository at this point
Copy the full SHA 94fe671View commit details
Commits on Jan 7, 2022
-
Auto merge of rust-lang#8234 - Alexendoo:lintcheck-allow-renamed-dir,…
… r=xFrednet Allow running lintcheck with a renamed rust-clippy dir I have Clippy checked out in `rust/clippy` rather than `rust/rust-clippy`, this allows lintcheck to still run in that case changelog: none
Configuration menu - View commit details
-
Copy full SHA for be7cf76 - Browse repository at this point
Copy the full SHA be7cf76View commit details -
Configuration menu - View commit details
-
Copy full SHA for c34e3f0 - Browse repository at this point
Copy the full SHA c34e3f0View commit details
Commits on Jan 8, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 366234a - Browse repository at this point
Copy the full SHA 366234aView commit details -
Auto merge of rust-lang#8201 - smoelius:master, r=camsteffen
Change `unnecessary_to_owned` `into_iter` suggestions to `MaybeIncorrect` I am having a hard time finding a good solution for rust-lang#8148, so I am wondering if is enough to just change the suggestion's applicability to `MaybeIncorrect`? I apologize, as I realize this is a bit of a cop out. changelog: none
Configuration menu - View commit details
-
Copy full SHA for 917890b - Browse repository at this point
Copy the full SHA 917890bView commit details -
Set binary-dep-depinfo in .cargo/config.toml
Fixes rust-lang#8248 According to https://doc.rust-lang.org/cargo/reference/unstable this seems to be the right place to set it, and it does fix the build for me. I haven't removed the other `rustflags` because perhaps it's needed on different cargo/rust versions?
Configuration menu - View commit details
-
Copy full SHA for 3ea5208 - Browse repository at this point
Copy the full SHA 3ea5208View commit details
Commits on Jan 9, 2022
-
Auto merge of rust-lang#8249 - sourcefrog:depinfo, r=Manishearth
Set binary-dep-depinfo in .cargo/config.toml Fixes rust-lang#8248 According to https://doc.rust-lang.org/cargo/reference/unstable this seems to be the right place to set it, and it does fix the build for me. I haven't removed the other `rustflags` because perhaps it's needed on different cargo/rust versions? --- *Please write a short comment explaining your change (or "none" for internal only changes)* changelog: none
Configuration menu - View commit details
-
Copy full SHA for 83a9f68 - Browse repository at this point
Copy the full SHA 83a9f68View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1288b80 - Browse repository at this point
Copy the full SHA 1288b80View commit details -
rustc_metadata: Rename
item_children(_untracked)
to `module_childre……n(_untracked)` And `each_child_of_item` to `for_each_module_child`
Configuration menu - View commit details
-
Copy full SHA for c8ea042 - Browse repository at this point
Copy the full SHA c8ea042View commit details -
Configuration menu - View commit details
-
Copy full SHA for f690978 - Browse repository at this point
Copy the full SHA f690978View commit details -
new lint:
single_char_lifetime_names
This pull request adds a lint against single character lifetime names, as they might not divulge enough information about the purpose of the lifetime. This can make code harder to understand. I placed this in `restriction` rather than `pedantic` (as suggested in rust-lang#8233) since most of the Rust ecosystem already uses single character lifetime names (to my knowledge, at least) and since single character lifetime names aren't incorrect. I'd be happy to change this upon request, however. Fixes rust-lang#8233. - [x] Followed lint naming conventions - [x] Added passing UI tests (including committed `.stderr` file) - [x] `cargo test` passes locally - [x] Executed `cargo dev update_lints` - [x] Added lint documentation - [x] Run `cargo dev fmt` changelog: new lint: [`single_char_lifetime_names`]
Configuration menu - View commit details
-
Copy full SHA for a6f80fc - Browse repository at this point
Copy the full SHA a6f80fcView commit details -
Auto merge of rust-lang#8236 - PatchMixolydic:single_char_lifetime_na…
…mes, r=llogiq new lint: `single_char_lifetime_names` This pull request adds a lint against single character lifetime names, as they might not divulge enough information about the purpose of the lifetime. This can make code harder to understand. I placed this in `restriction` rather than `pedantic` (as suggested in rust-lang#8233) since most of the Rust ecosystem already uses single character lifetime names (to my knowledge, at least) and since single character lifetime names aren't incorrect. I'd be happy to change this upon request, however. Fixes rust-lang#8233. - [x] Followed lint naming conventions - [x] Added passing UI tests (including committed `.stderr` file) - [x] `cargo test` passes locally - [x] Executed `cargo dev update_lints` - [x] Added lint documentation - [x] Run `cargo dev fmt` changelog: new lint: [`single_char_lifetime_names`]
Configuration menu - View commit details
-
Copy full SHA for 5991695 - Browse repository at this point
Copy the full SHA 5991695View commit details
Commits on Jan 10, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 16d8488 - Browse repository at this point
Copy the full SHA 16d8488View commit details -
Configuration menu - View commit details
-
Copy full SHA for e2ce4f9 - Browse repository at this point
Copy the full SHA e2ce4f9View commit details -
Configuration menu - View commit details
-
Copy full SHA for f4dc348 - Browse repository at this point
Copy the full SHA f4dc348View commit details -
Auto merge of rust-lang#8252 - dswij:8229, r=xFrednet
cover trait for `trait_duplication_in_bounds` closes rust-lang#8229 changelog: [`trait_duplication_in_bounds`] covers trait functions with `Self` bounds
Configuration menu - View commit details
-
Copy full SHA for 88cfd70 - Browse repository at this point
Copy the full SHA 88cfd70View commit details -
Auto merge of rust-lang#8257 - camsteffen:internal-features, r=giraffate
Combine internal cargo features changelog: none This is just simpler and I don't see any downsides.
Configuration menu - View commit details
-
Copy full SHA for 1816361 - Browse repository at this point
Copy the full SHA 1816361View commit details -
Auto merge of rust-lang#8228 - Jarcho:iter_not_returning_iterator_822…
…5, r=giraffate fix `iter_not_returning_iterator` fixes rust-lang#8225 changelog: Handle type projections in `iter_not_returning_iterator` changelog: Don't lint `iter_not_returning_iterator` in trait implementations changelog: Lint `iter_not_returning_iterator` in trait definitions
Configuration menu - View commit details
-
Copy full SHA for b66dbe8 - Browse repository at this point
Copy the full SHA b66dbe8View commit details -
Configuration menu - View commit details
-
Copy full SHA for cf86cee - Browse repository at this point
Copy the full SHA cf86ceeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5f143c6 - Browse repository at this point
Copy the full SHA 5f143c6View commit details -
I believe this is possible as of rust-lang/rust-clippy#7631
Configuration menu - View commit details
-
Copy full SHA for e66ecf6 - Browse repository at this point
Copy the full SHA e66ecf6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7cf4f44 - Browse repository at this point
Copy the full SHA 7cf4f44View commit details -
Configuration menu - View commit details
-
Copy full SHA for 51dbbf3 - Browse repository at this point
Copy the full SHA 51dbbf3View commit details -
Configuration menu - View commit details
-
Copy full SHA for d356fb9 - Browse repository at this point
Copy the full SHA d356fb9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 920e9f0 - Browse repository at this point
Copy the full SHA 920e9f0View commit details -
The two dogfood tests cannot be run concurrently since they use the same target directory.
Configuration menu - View commit details
-
Copy full SHA for 4a54933 - Browse repository at this point
Copy the full SHA 4a54933View commit details -
Remove rustfmt component check
This was more valuable when we used the latest nightly without specifying the toolchain version.
Configuration menu - View commit details
-
Copy full SHA for 21343ab - Browse repository at this point
Copy the full SHA 21343abView commit details -
Auto merge of rust-lang#8261 - taiki-e:disallowed, r=giraffate
Warn disallowed_methods and disallowed_types by default Closes rust-lang#7841 changelog: Moved [`disallowed_methods`] and [`disallowed_types`] to `style`
Configuration menu - View commit details
-
Copy full SHA for 51282fc - Browse repository at this point
Copy the full SHA 51282fcView commit details
Commits on Jan 11, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 01ef7c7 - Browse repository at this point
Copy the full SHA 01ef7c7View commit details -
Auto merge of rust-lang#8260 - taiki-e:mutex_atomic, r=llogiq
Downgrade mutex_atomic to nursery See rust-lang#1516 and rust-lang#4295. There are suggestions about removing this lint from the default warned lints in both issues. Also, [`mutex_integer`](https://rust-lang.github.io/rust-clippy/master/index.html#mutex_integer) lint that has the same problems as this lint is in `nursery` group. changelog: Moved [`mutex_atomic`] to `nursery`
Configuration menu - View commit details
-
Copy full SHA for fccf07b - Browse repository at this point
Copy the full SHA fccf07bView commit details -
Closes: rust-lang#6995 Signed-off-by: Federico Guerinoni <guerinoni.federico@gmail.com> Co-authored-by: Paolo Barbolini <paolo@paolo565.org>
Configuration menu - View commit details
-
Copy full SHA for 3298de7 - Browse repository at this point
Copy the full SHA 3298de7View commit details -
README
:clippy-driver
is not a replacement forrustc
Currently, `clippy-driver` may run codegen, but this is an implementation detail. See rust-lang/rust-clippy#8035. Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
Configuration menu - View commit details
-
Copy full SHA for fd97d79 - Browse repository at this point
Copy the full SHA fd97d79View commit details -
README
: mentionclippy-driver
on usage listRemoves the "compiled from source" bit, which is confusing. Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
Configuration menu - View commit details
-
Copy full SHA for 3d4fded - Browse repository at this point
Copy the full SHA 3d4fdedView commit details -
Store a
Symbol
instead of anIdent
inVariantDef
/FieldDef
The field is also renamed from `ident` to `name. In most cases, we don't actually need the `Span`. A new `ident` method is added to `VariantDef` and `FieldDef`, which constructs the full `Ident` using `tcx.def_ident_span()`. This method is used in the cases where we actually need an `Ident`. This makes incremental compilation properly track changes to the `Span`, without all of the invalidations caused by storing a `Span` directly via an `Ident`.
Configuration menu - View commit details
-
Copy full SHA for dda2aef - Browse repository at this point
Copy the full SHA dda2aefView commit details -
Auto merge of rust-lang#8210 - guerinoni:master, r=Manishearth
Add borrow_as_ptr lint Closes: rust-lang#6995 - \[x] Followed [lint naming conventions][lint_naming] - \[x] Added passing UI tests (including committed `.stderr` file) - \[x] `cargo test` passes locally - \[x] Executed `cargo dev update_lints` - \[x] Added lint documentation - \[x] Run `cargo dev fmt` --- changelog: new lint: [`borrow_as_ptr`]
Configuration menu - View commit details
-
Copy full SHA for fd9cebe - Browse repository at this point
Copy the full SHA fd9cebeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 02ec39b - Browse repository at this point
Copy the full SHA 02ec39bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7e989ec - Browse repository at this point
Copy the full SHA 7e989ecView commit details -
Auto merge of rust-lang#8262 - 1nF0rmed:chore-update-borrowed-box-doc…
…, r=camsteffen Improve documentation for `borrowed-box` lint fixes rust-lang#8161 Updates documentation to elaborate more on how removing Box from a function parameter can generalize the function. changelog: none
Configuration menu - View commit details
-
Copy full SHA for 88f5be2 - Browse repository at this point
Copy the full SHA 88f5be2View commit details
Commits on Jan 12, 2022
-
Configuration menu - View commit details
-
Copy full SHA for d32277d - Browse repository at this point
Copy the full SHA d32277dView commit details -
Auto merge of rust-lang#8268 - Jarcho:deref_addrof_8247, r=flip1995
Fix `deref_addrof` fixes rust-lang#8247 This would supersede rust-lang#8259 changelog: Don't lint `deref_addrof` when the dereference and the borrow occur in different contexts
Configuration menu - View commit details
-
Copy full SHA for 37e9985 - Browse repository at this point
Copy the full SHA 37e9985View commit details -
Auto merge of rust-lang#8198 - camsteffen:no-method-call-macro, r=fli…
…p1995 Remove method_call! macro This is possible now that `SymbolStr` is removed from rustc. changelog: none
Configuration menu - View commit details
-
Copy full SHA for 0d94167 - Browse repository at this point
Copy the full SHA 0d94167View commit details -
Auto merge of rust-lang#8190 - camsteffen:no-in-band-liftetimes, r=fl…
…ip1995 Stop using `in_band_lifetimes` Per rust-lang#91867 changelog: none
Configuration menu - View commit details
-
Copy full SHA for ae01c4a - Browse repository at this point
Copy the full SHA ae01c4aView commit details -
Auto merge of rust-lang#8037 - ojeda:doc-codegen-change, r=camsteffen
`README`: document that Clippy may change codegen Currently, Clippy does not guarantee the same codegen will be produced. Therefore, it should not be used as an universal replacement for `rustc`. See rust-lang/rust-clippy#8035. Signed-off-by: Miguel Ojeda <ojeda@kernel.org> fixes rust-lang#8035 changelog: document that Clippy may change codegen
Configuration menu - View commit details
-
Copy full SHA for b9cae79 - Browse repository at this point
Copy the full SHA b9cae79View commit details -
Configuration menu - View commit details
-
Copy full SHA for 166737f - Browse repository at this point
Copy the full SHA 166737fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 91581f6 - Browse repository at this point
Copy the full SHA 91581f6View commit details -
Auto merge of rust-lang#8213 - paolobarbolini:size-of-as-bits, r=flip…
…1995 Add `manual_bits` lint Closes rust-lang#6670 --- changelog: new lint: [`manual_bits`]
Configuration menu - View commit details
-
Copy full SHA for 7c82ae1 - Browse repository at this point
Copy the full SHA 7c82ae1View commit details -
Use method name from conf::DisallowedMethod
Since def_path_str returns e.g. "core::f32::<impl f32>::clamp" for "f32::clamp"
Configuration menu - View commit details
-
Copy full SHA for 04eb27a - Browse repository at this point
Copy the full SHA 04eb27aView commit details -
Auto merge of rust-lang#8112 - Alexendoo:disallowed_methods_primitive…
…s, r=flip1995 Allow primitive types in disallowed_methods Fixes rust-lang#8079 changelog: `disallowed_methods`: Now can disallow methods of primitive types
Configuration menu - View commit details
-
Copy full SHA for 6f33f69 - Browse repository at this point
Copy the full SHA 6f33f69View commit details -
Configuration menu - View commit details
-
Copy full SHA for 90bf72c - Browse repository at this point
Copy the full SHA 90bf72cView commit details -
Auto merge of rust-lang#8265 - camsteffen:which-rustfmt, r=xFrednet
Cache rustfmt path changelog: none Call `rustup which rustfmt` and use the output. This shaves off ~0.7 seconds for `cargo dev fmt` for me.
Configuration menu - View commit details
-
Copy full SHA for 133b366 - Browse repository at this point
Copy the full SHA 133b366View commit details -
Auto merge of rust-lang#8266 - camsteffen:test-tweaks, r=flip1995
Some test code cleanup changelog: none Mainly moves /clippy_workspace_tests into /tests and combines the two dogfood tests which can't run concurrently.
Configuration menu - View commit details
-
Copy full SHA for 5479024 - Browse repository at this point
Copy the full SHA 5479024View commit details -
Configuration menu - View commit details
-
Copy full SHA for 062db10 - Browse repository at this point
Copy the full SHA 062db10View commit details -
Auto merge of rust-lang#8226 - Jarcho:manual_memcpy_8160, r=flip1995
`manual_memcpy` fix fixes rust-lang#8160 Ideally this would work with `VecDeque`, but the current interface is unsuitable for it. At a minimum something like `range_as_slices` would be needed. changelog: Don't lint `manual_memcpy` on `VecDeque` changelog: Suggest `copy_from_slice` for `manual_memcpy` when applicable
Configuration menu - View commit details
-
Copy full SHA for 60e68d6 - Browse repository at this point
Copy the full SHA 60e68d6View commit details
Commits on Jan 13, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 11be495 - Browse repository at this point
Copy the full SHA 11be495View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8a2141b - Browse repository at this point
Copy the full SHA 8a2141bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6ad05bc - Browse repository at this point
Copy the full SHA 6ad05bcView commit details -
Auto merge of rust-lang#8272 - flip1995:rustup, r=flip1995
Rustup r? `@ghost` changelog: none
Configuration menu - View commit details
-
Copy full SHA for 97a5daa - Browse repository at this point
Copy the full SHA 97a5daaView commit details -
Configuration menu - View commit details
-
Copy full SHA for ba66384 - Browse repository at this point
Copy the full SHA ba66384View commit details -
Configuration menu - View commit details
-
Copy full SHA for 159d6c3 - Browse repository at this point
Copy the full SHA 159d6c3View commit details -
Configuration menu - View commit details
-
Copy full SHA for b83c77c - Browse repository at this point
Copy the full SHA b83c77cView commit details