| Age | Commit message (Expand) | Author | Lines |
| 2022-10-21 | Fix unreachable_pub suggestion for enum with fields | Kitsu | -0/+30 |
| 2022-10-20 | Elaborate supertrait bounds when triggering unused_must_use on impl Trait | Michael Goulet | -0/+26 |
| 2022-10-17 | `order_dependent_trait_objects` to `ReportNow` | lcnr | -0/+42 |
| 2022-10-15 | Auto merge of #99292 - Aaron1011:stability-use-tree, r=cjgillot | bors | -2/+11 |
| 2022-10-13 | fix small word dupe typos | Rageking8 | -1/+1 |
| 2022-10-09 | fixup lint name | Maybe Waffle | -1/+1 |
| 2022-10-09 | `for_loop_over_fallibles`: fix suggestion for "remove `.next()`" case | Maybe Waffle | -3/+2 |
| 2022-10-09 | Add a test for the `for_loop_over_fallibles` lint | Maybe Waffle | -0/+145 |
| 2022-10-07 | make const_err a hard error | Ralf Jung | -83/+43 |
| 2022-10-05 | Fix opaque_hidden_inferred_bound lint ICE | Michael Goulet | -0/+22 |
| 2022-10-05 | change might_permit_raw_init to fully detect LLVM UB, but not more than that | Ralf Jung | -26/+51 |
| 2022-10-04 | Rollup merge of #102489 - compiler-errors:issue-102074, r=oli-obk | Dylan DPC | -2/+11 |
| 2022-10-04 | Rollup merge of #102639 - nnethercote:improve-spans-splitting, r=Aaron1011 | Matthias Krüger | -1/+1 |
| 2022-10-04 | Rollup merge of #102567 - compiler-errors:issue-102561, r=davidtwco | Matthias Krüger | -0/+19 |
| 2022-10-04 | We are able to resolve methods even if they need subst | Michael Goulet | -2/+11 |
| 2022-10-04 | Improve spans when splitting multi-char operator tokens for proc macros. | Nicholas Nethercote | -1/+1 |
| 2022-10-02 | Delay evaluating lint primary message until after it would be suppressed | Michael Goulet | -0/+19 |
| 2022-10-01 | Compute `lint_levels` by definition | Deadbeef | -8/+8 |
| 2022-10-01 | bless ui tests | Maybe Waffle | -306/+306 |
| 2022-09-27 | also query type_uninhabited_from | Ralf Jung | -1/+1 |
| 2022-09-26 | make invalid_value lint a bit smarter around enums | Ralf Jung | -66/+171 |
| 2022-09-22 | Revert "Auto merge of #101620 - cjgillot:compute_lint_levels_by_def, r=oli-obk" | Camille GILLOT | -8/+8 |
| 2022-09-15 | Auto merge of #101620 - cjgillot:compute_lint_levels_by_def, r=oli-obk | bors | -8/+8 |
| 2022-09-14 | Compute `lint_levels` by definition | Deadbeef | -8/+8 |
| 2022-09-13 | Update must_not_suspend/ref.rs | Eric Holk | -10/+37 |
| 2022-09-12 | A SubstitutionPart is not a deletion if it replaces nothing with nothing | Michael Goulet | -45/+30 |
| 2022-09-04 | Don't fire `rust_2021_incompatible_closure_captures` in edition = 2021 | Maybe Waffle | -0/+15 |
| 2022-09-02 | Rollup merge of #97739 - a2aaron:let_underscore, r=estebank | Guillaume Gomez | -0/+63 |
| 2022-08-31 | Fix a bunch of typo | Dezhi Wu | -1/+1 |
| 2022-08-26 | More tests for invalid_value lint | 5225225 | -7/+49 |
| 2022-08-26 | Make invalid-value trigger on uninit primitives | 5225225 | -10/+23 |
| 2022-08-25 | Rollup merge of #99332 - jyn514:stabilize-label-break-value, r=petrochenkov | Yuki Okushi | -11/+10 |
| 2022-08-23 | Stabilize `#![feature(label_break_value)]` | Joshua Nelson | -11/+10 |
| 2022-08-23 | Use par_body_owners for liveness | Seo Sanghyeon | -20/+20 |
| 2022-08-18 | Rollup merge of #97962 - eholk:drop-tracking-must-not-suspend, r=cjgillot | Matthias Krüger | -0/+57 |
| 2022-08-11 | Add missing visit_pat_field in early lint visitor. | Eric Huss | -6/+27 |
| 2022-08-11 | Make Node::ExprField a child of Node::Expr. | Eric Huss | -76/+76 |
| 2022-08-11 | Add visitors for PatField and ExprField. | Eric Huss | -1/+1 |
| 2022-08-11 | Honor lint level attributes in more places. | Eric Huss | -0/+1266 |
| 2022-08-11 | Check attributes on struct expression fields. | Eric Huss | -2/+8 |
| 2022-08-11 | Check attributes on pattern fields. | Eric Huss | -1/+13 |
| 2022-08-10 | Rollup merge of #100226 - cjgillot:noice-multibyte, r=davidtwco | Matthias Krüger | -0/+54 |
| 2022-08-07 | Do not manually craft a span pointing inside a multibyte character. | Camille GILLOT | -0/+54 |
| 2022-08-05 | Use `#![warn(let_underscore_drop)]` in tests. | Aaron Kofsky | -2/+6 |
| 2022-08-05 | Delay formatting trimmed path until lint/error is emitted | Michael Goulet | -0/+24 |
| 2022-08-05 | Auto merge of #95977 - FabianWolff:issue-92790-dead-tuple, r=estebank | bors | -6/+64 |
| 2022-08-04 | Explain why let-underscoring a lock guard is incorrect. | Aaron Kofsky | -2/+4 |
| 2022-08-04 | Rollup merge of #100093 - wcampbell0x2a:unused-parens-for-match-arms, r=petro... | Matthias Krüger | -0/+41 |
| 2022-08-04 | Enable unused_parens for match arms | wcampbell | -0/+41 |
| 2022-08-03 | Rollup merge of #100029 - hdelc:master, r=cjgillot | Matthias Krüger | -2/+2 |