| Age | Commit message (Expand) | Author | Lines |
| 2025-03-31 | Auto merge of #119220 - Urgau:uplift-invalid_null_ptr_usage, r=fee1-dead | bors | -62/+192 |
| 2025-03-30 | Uplift `clippy::invalid_null_ptr_usage` as `invalid_null_arguments` | Urgau | -4/+120 |
| 2025-03-30 | Auto merge of #138206 - amy-kwan:amy-kwan/reprc-struct-power-align-ignore-pac... | bors | -0/+6 |
| 2025-03-30 | Improve explicitness of the impl of the `useless_ptr_null_checks` lint | Urgau | -17/+17 |
| 2025-03-30 | Expose `peel_casts` method as an util method inside `rustc_lint` | Urgau | -43/+57 |
| 2025-03-28 | uses_power_alignment: wording tweaks | Ralf Jung | -6/+8 |
| 2025-03-28 | Add `{ast,hir,thir}::PatKind::Missing` variants. | Nicholas Nethercote | -15/+14 |
| 2025-03-27 | Rollup merge of #138964 - compiler-errors:usage-of-interner, r=lcnr | Stuart Cook | -42/+92 |
| 2025-03-26 | Add environment variable tracking in places where it was convenient | Mads Marquart | -2/+4 |
| 2025-03-26 | Implement lint against using Interner and InferCtxtLike in random compiler cr... | Michael Goulet | -3/+42 |
| 2025-03-26 | hir::-ify internal lints | Michael Goulet | -39/+50 |
| 2025-03-25 | Rollup merge of #138929 - oli-obk:assoc-ctxt-of-trait, r=compiler-errors | Matthias Krüger | -2/+2 |
| 2025-03-25 | Track whether an assoc item is in a trait impl or an inherent impl | Oli Scherer | -2/+2 |
| 2025-03-25 | Use `Option<Symbol>` in `panic_call`. | Nicholas Nethercote | -5/+8 |
| 2025-03-20 | Rollup merge of #138685 - nnethercote:use-Option-Ident-for-lowered-param-name... | Matthias Krüger | -1/+3 |
| 2025-03-20 | Add `#[repr(u128)]`/`#[repr(i128)]` enums to `improper_ctypes_definitions` | beetrees | -1/+11 |
| 2025-03-19 | Rollup merge of #138001 - meithecatte:privately-uninhabited, r=Nadrieril | Matthias Krüger | -19/+7 |
| 2025-03-19 | Use `Option<Ident>` for lowered param names. | Nicholas Nethercote | -1/+3 |
| 2025-03-18 | Move `hir::Item::ident` into `hir::ItemKind`. | Nicholas Nethercote | -29/+35 |
| 2025-03-15 | Stop relying on rustc_type_ir in non-type-system crates | Michael Goulet | -37/+39 |
| 2025-03-15 | Fold visit into ty | Michael Goulet | -4/+3 |
| 2025-03-15 | Squash fold into ty | Michael Goulet | -2/+1 |
| 2025-03-15 | Rollup merge of #138474 - remexre:refactor-is-snake-case, r=compiler-errors | León Orell Valerian Liehr | -12/+7 |
| 2025-03-14 | Rollup merge of #138434 - compiler-errors:lint-level-pat-field, r=jieyouxu | Jacob Pratt | -0/+5 |
| 2025-03-13 | Refactor is_snake_case. | Diane Ringo | -12/+7 |
| 2025-03-13 | Auto merge of #138416 - Manishearth:rollup-fejor9p, r=Manishearth | bors | -11/+12 |
| 2025-03-13 | Visit PatField when collecting lint levels | Michael Goulet | -0/+5 |
| 2025-03-12 | Auto merge of #138414 - matthiaskrgr:rollup-9ablqdb, r=matthiaskrgr | bors | -1/+0 |
| 2025-03-12 | Rollup merge of #138331 - nnethercote:use-RUSTC_LINT_FLAGS-more, r=onur-ozkan... | Manish Goregaokar | -1/+0 |
| 2025-03-12 | Rollup merge of #137504 - nnethercote:remove-Map-4, r=Zalathar | Manish Goregaokar | -11/+12 |
| 2025-03-12 | Rollup merge of #138331 - nnethercote:use-RUSTC_LINT_FLAGS-more, r=onur-ozkan... | Matthias Krüger | -1/+0 |
| 2025-03-12 | Auto merge of #138083 - nnethercote:rm-NtItem-NtStmt, r=petrochenkov | bors | -0/+1 |
| 2025-03-12 | Rollup merge of #138360 - Urgau:fix-fp-expr_or_init, r=wesleywiser | Matthias Krüger | -2/+14 |
| 2025-03-12 | Move methods from `Map` to `TyCtxt`, part 4. | Nicholas Nethercote | -10/+11 |
| 2025-03-12 | Rename `hir_attrs` query as `hir_attr_map`. | Nicholas Nethercote | -1/+1 |
| 2025-03-11 | Fix false-positive in `expr_or_init` and in the `invalid_from_utf8` lint | Urgau | -2/+14 |
| 2025-03-11 | Auto merge of #128440 - oli-obk:defines, r=lcnr | bors | -0/+1 |
| 2025-03-11 | Implement `#[define_opaque]` attribute for functions. | Oli Scherer | -0/+1 |
| 2025-03-11 | Remove `#![warn(unreachable_pub)]` from all `compiler/` crates. | Nicholas Nethercote | -1/+0 |
| 2025-03-11 | Auto merge of #138302 - matthiaskrgr:rollup-an2up80, r=matthiaskrgr | bors | -1/+1 |
| 2025-03-10 | Revert "Use workspace lints for crates in `compiler/` #138084" | 许杰友 Jieyou Xu (Joe) | -0/+1 |
| 2025-03-10 | Rollup merge of #138270 - StevenMia:master, r=compiler-errors | Matthias Krüger | -1/+1 |
| 2025-03-09 | chore: Fix some comments | StevenMia | -1/+1 |
| 2025-03-09 | Rollup merge of #138084 - nnethercote:workspace-lints, r=jieyouxu | Matthias Krüger | -1/+0 |
| 2025-03-08 | [AIX] Ignore linting on repr(C) structs with repr(packed) or repr(align(n)) | Amy Kwan | -0/+6 |
| 2025-03-08 | Remove `#![warn(unreachable_pub)]` from all `compiler/` crates. | Nicholas Nethercote | -1/+0 |
| 2025-03-07 | Rollup merge of #138150 - nnethercote:streamline-intravisit-visit_id, r=oli-obk | Matthias Krüger | -1/+1 |
| 2025-03-07 | Rollup merge of #134797 - spastorino:ergonomic-ref-counting-1, r=nikomatsakis | Matthias Krüger | -1/+8 |
| 2025-03-07 | Add helper methods checking for "#[non_exhaustive] that's active" | Maja Kądziołka | -19/+7 |
| 2025-03-07 | Move `visit_id` calls. | Nicholas Nethercote | -1/+1 |