| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2023-11-24 | Bless clippy tests | Nilstrieb | -21/+21 | |
| Co-authored-by: Adrian <adrian.iosdev@gmail.com> | ||||
| 2023-11-16 | Merge commit 'edb720b199083f4107b858a8761648065bf38d86' into clippyup | Philipp Krones | -0/+46 | |
| 2023-10-25 | Work around the fact that `check_mod_type_wf` may spuriously return ↵ | Oli Scherer | -2/+12 | |
| `ErrorGuaranteed`, even if that error is only emitted by `check_modwitem_types` | ||||
| 2023-10-23 | Auto merge of #116849 - oli-obk:error_shenanigans, r=cjgillot | bors | -12/+2 | |
| Avoid a `track_errors` by bubbling up most errors from `check_well_formed` I believe `track_errors` is mostly papering over issues that a sufficiently convoluted query graph can hit. I made this change, while the actual change I want to do is to stop bailing out early on errors, and instead use this new `ErrorGuaranteed` to invoke `check_well_formed` for individual items before doing all the `typeck` logic on them. This works towards resolving https://github.com/rust-lang/rust/issues/97477 and various other ICEs, as well as allowing us to use parallel rustc more (which is currently rather limited/bottlenecked due to the very sequential nature in which we do `rustc_hir_analysis::check_crate`) cc `@SparrowLii` `@Zoxc` for the new `try_par_for_each_in` function | ||||
| 2023-10-20 | s/generator/coroutine/ | Oli Scherer | -1/+1 | |
| 2023-10-20 | Avoid a `track_errors` by bubbling up most errors from `check_well_formed` | Oli Scherer | -12/+2 | |
| 2023-10-09 | Extend impl's def_span to include where clauses | Michael Goulet | -1/+1 | |
| 2023-10-03 | Point to full async fn for future | Michael Goulet | -2/+2 | |
| 2023-09-21 | adjust how closure/generator types and rvalues are printed | Ralf Jung | -1/+1 | |
| 2023-09-12 | Merge commit '98363cbf6a7c3f8b571a7d92a3c645bb4376e4a6' into clippyup | Philipp Krones | -4/+94 | |
| 2023-09-04 | Adjust clippy tests with new rustc help suggestion for lints | Urgau | -0/+19 | |
| 2023-08-24 | Merge commit '080b587854a73f2a8cbaecff1884860a78e2ff37' into clippyup | Philipp Krones | -26/+235 | |
| 2023-08-17 | Auto merge of #11070 - y21:issue11065, r=flip1995 | bors | -0/+19 | |
| [`useless_conversion`]: only lint on paths to fn items and fix FP in macro Fixes #11065 (which is actually two issues: an ICE and a false positive) It now makes sure that the function call path points to a function-like item (and not e.g. a `const` like in the linked issue), so that calling `TyCtxt::fn_sig` later in the lint does not ICE (fixes https://github.com/rust-lang/rust-clippy/issues/11065#issuecomment-1616836099). It *also* makes sure that the expression is not part of a macro call (fixes https://github.com/rust-lang/rust-clippy/issues/11065#issuecomment-1616919639). ~~I'm not sure if there's a better way to check this other than to walk the parent expr chain and see if any of them are expansions.~~ (edit: it doesn't do this anymore) changelog: [`useless_conversion`]: fix ICE when call receiver is a non-fn item changelog: [`useless_conversion`]: don't lint if argument is a macro argument (fixes a FP) r? `@llogiq` (reviewed #10814, which introduced these issues) | ||||
| 2023-07-17 | Merge commit 'd9c24d1b1ee61f276e550b967409c9f155eac4e3' into clippyup | Philipp Krones | -2/+2 | |
| 2023-07-14 | refactor(rustc_middle): Substs -> GenericArg | Mahdi Dibaiee | -1/+1 | |
| 2023-07-02 | Merge commit '37f4c1725d3fd7e9c3ffd8783246bc5589debc53' into clippyup | Philipp Krones | -47/+49 | |
| 2023-06-26 | Make simd_shuffle_indices use valtrees | Oli Scherer | -0/+12 | |
| 2023-06-25 | Do not offer any of the suggestions in emit_coerce_suggestions for expr from ↵ | yukang | -5/+0 | |
| destructuring assignment desugaring | ||||
| 2023-06-10 | Drop uplifted `clippy:cmp_nan` | Urgau | -3/+2 | |
| 2023-06-02 | Merge commit '30448e8cf98d4754350db0c959644564f317bc0f' into clippyup | Philipp Krones | -0/+1 | |
| 2023-05-05 | Merge commit '371120bdbf58a331db5dcfb2d9cddc040f486de8' into clippyup | Philipp Krones | -6/+9 | |
| 2023-04-23 | Merge commit 'a3ed905928a03b6e433d0b429190bf3a847128b3' into clippyup | Philipp Krones | -12/+12 | |
| 2023-04-18 | clippy: add test for https://github.com/rust-lang/rust-clippy/issues/10645 | Matthias Krüger | -1/+20 | |
| 2023-04-12 | Special-case item attributes in the suggestion output | Esteban Küber | -3/+0 | |
| 2023-04-12 | Tweak output for 'add line' suggestion | Esteban Küber | -3/+6 | |
| 2023-03-27 | Add notes to non-structural const in pattern error message | Jamen Marz | -0/+2 | |
| 2023-03-24 | Merge commit 'd5e2a7aca55ed49fc943b7a07a8eba05ab5a0079' into clippyup | Philipp Krones | -3/+3 | |
| 2023-03-10 | Merge commit '3c06e0b1ce003912f8fe0536d3a7fe22558e38cf' into clippyup | Philipp Krones | -1/+39 | |
| 2023-03-02 | Fix array-size-threshold config deserialization error | Alex Macleod | -13/+0 | |
| 2023-02-25 | Merge commit '149392b0baa4730c68f3c3eadf5c6ed7b16b85a4' into clippyup | Jason Newcomb | -0/+24 | |
| 2023-02-10 | Merge commit '0f7558148c22e53cd4608773b56cdfa50dcdeac3' into clippyup | Philipp Krones | -0/+10 | |
| 2023-01-12 | Don't suggest dyn as parameter to add | Michael Goulet | -3/+6 | |
| 2023-01-11 | Change `src/test` to `tests` in source files, fix tidy and tests | Albert Larsan | -3/+3 | |
| 2022-12-29 | Merge commit '4f3ab69ea0a0908260944443c739426cc384ae1a' into clippyup | Philipp Krones | -0/+13 | |
| 2022-11-21 | Merge commit 'f4850f7292efa33759b4f7f9b7621268979e9914' into clippyup | Philipp Krones | -2/+17 | |
| 2022-11-09 | bless clippy | yukang | -0/+5 | |
| 2022-10-23 | Merge commit '4f142aa1058f14f153f8bfd2d82f04ddb9982388' into clippyup | flip1995 | -0/+4 | |
| 2022-10-07 | make const_err a hard error | Ralf Jung | -2/+2 | |
| 2022-10-06 | Merge commit 'ac0e10aa68325235069a842f47499852b2dee79e' into clippyup | Philipp Krones | -1/+11 | |
| 2022-10-01 | bless clippy | Maybe Waffle | -5/+5 | |
| 2022-09-23 | Stabilize const `BTree{Map,Set}::new` | Nilstrieb | -3/+3 | |
| Since `len` and `is_empty` are not const stable yet, this also creates a new feature for them since they previously used the same `const_btree_new` feature. | ||||
| 2022-09-21 | Merge commit '7248d06384c6a90de58c04c1f46be88821278d8b' into sync-from-clippy | David Koloski | -0/+34 | |
| 2022-09-09 | Merge commit 'b52fb5234cd7c11ecfae51897a6f7fa52e8777fc' into clippyup | Philipp Krones | -0/+30 | |
| 2022-08-11 | Merge commit '2b2190cb5667cdd276a24ef8b9f3692209c54a89' into clippyup | Philipp Krones | -3/+3 | |
| 2022-07-28 | Merge commit '3c7e7dbc1583a0b06df5bd7623dd354a4debd23d' into clippyup | Philipp Krones | -0/+20 | |
| 2022-07-22 | Do not resolve associated const when there is no provided value | Michael Goulet | -9/+1 | |
| 2022-07-18 | Merge commit 'fdb84cbfd25908df5683f8f62388f663d9260e39' into clippyup | Philipp Krones | -0/+18 | |
| 2022-07-07 | Shorten span for closures. | Camille GILLOT | -1/+1 | |
| 2022-07-06 | fix miri-opt tests | Takayuki Maeda | -1/+1 | |
| 2022-07-01 | Shorten def_span for more items. | Camille GILLOT | -1/+1 | |
