| Age | Commit message (Expand) | Author | Lines |
| 2025-09-14 | Move more early buffered lints to dyn lint diagnostics (4/N) | León Orell Valerian Liehr | -44/+0 |
| 2025-09-14 | Move more early buffered lints to dyn lint diagnostics (3/N) | León Orell Valerian Liehr | -21/+0 |
| 2025-09-14 | Remove a dead early lint | León Orell Valerian Liehr | -8/+0 |
| 2025-09-14 | Move more early buffered lints to dyn lint diagnostics (2/N) | León Orell Valerian Liehr | -31/+0 |
| 2025-09-14 | Move more early buffered lints to dyn lint diagnostics (1/N) | León Orell Valerian Liehr | -61/+1 |
| 2025-08-27 | Disable `int_to_ptr_transmutes` suggestion for unsized types | Urgau | -1/+1 |
| 2025-08-24 | Prefer verbose suggestions for `integer_to_ptr_transmutes` lint | Urgau | -2/+4 |
| 2025-08-24 | Add lint against integer to pointer transmutes | Urgau | -0/+42 |
| 2025-08-22 | Migrate `BuiltinLintDiag::HiddenUnicodeCodepoints` to use `LintDiagnostic` di... | Josh Triplett | -74/+0 |
| 2025-08-22 | Remove unused `BuiltinLintDiag` variant `InnerAttributeUnstable` | Josh Triplett | -8/+0 |
| 2025-08-22 | Migrate `BuiltinLintDiag::MissingAbi` to use `LintDiagnostic` directly | Josh Triplett | -9/+0 |
| 2025-08-22 | Migrate `BuiltinLintDiag::UnexpectedBuiltinCfg` to use `LintDiagnostic` directly | Josh Triplett | -10/+0 |
| 2025-08-20 | rustc_lint_defs: Eliminate the dependency on `rustc_hir` for `Namespace` | Josh Triplett | -2/+1 |
| 2025-08-13 | Rollup merge of #145274 - compiler-errors:unused-must-use, r=fmease | Jakub Beránek | -1/+2 |
| 2025-08-12 | Remove unused must_use | Michael Goulet | -1/+2 |
| 2025-08-11 | Add link to docs on malformed attributes | Esteban Küber | -0/+3 |
| 2025-08-08 | Refactor map_unit_fn lint | Cameron Steffen | -2/+1 |
| 2025-08-07 | Rollup merge of #144601 - kornelski:cargo-fix-mismatched_lifetime_syntaxes, r... | Stuart Cook | -21/+39 |
| 2025-07-31 | Add lint against dangling pointers form local variables | Urgau | -0/+16 |
| 2025-07-28 | Allow `cargo fix` to partially apply `mismatched_lifetime_syntaxes` | Kornel | -21/+39 |
| 2025-07-17 | Rollup merge of #143914 - shepmaster:mismatched-lifetime-syntaxes-rewording, ... | Matthias Krüger | -18/+54 |
| 2025-07-17 | Rollup merge of #143856 - mladedav:dm/private-reexport, r=petrochenkov | León Orell Valerian Liehr | -0/+8 |
| 2025-07-15 | Implement resolver warnings about reexporting private dependencies | David Mládek | -0/+8 |
| 2025-07-14 | Reword mismatched-lifetime-syntaxes text based on feedback | Jake Goulding | -18/+54 |
| 2025-07-10 | added error for invalid char cast | Kivooeo | -0/+14 |
| 2025-07-07 | Remove unused allow attrs | Yotam Ofek | -1/+0 |
| 2025-06-25 | Rollup merge of #142724 - xizheyin:avoid_overwrite_args, r=oli-obk | Jana Dönszelmann | -5/+6 |
| 2025-06-25 | Add runtime check to avoid overwrite arg easily in diag and store and restore... | xizheyin | -5/+6 |
| 2025-06-24 | Rollup merge of #142980 - shepmaster:mismatched-syntaxes-multi-suggestions, r... | Jubilee | -3/+3 |
| 2025-06-24 | Reduce mismatched-lifetime-syntaxes suggestions to MaybeIncorrect | Jake Goulding | -3/+3 |
| 2025-06-24 | Rollup merge of #142645 - Urgau:usage-non_upper_case_globals, r=fmease | Matthias Krüger | -1/+18 |
| 2025-06-22 | Address review comments | Urgau | -1/+3 |
| 2025-06-20 | Switch `non_upper_case_globals` suggestions to being machine-applicable | Urgau | -2/+2 |
| 2025-06-18 | Emit the usages suggestions as tool-only suggestions | Urgau | -1/+14 |
| 2025-06-18 | Implement lint against direct uses of rustc_type_ir in compiler crates | Romain Perier | -0/+5 |
| 2025-06-18 | Auto merge of #138165 - jdonszelmann:inline, r=oli-obk | bors | -0/+1 |
| 2025-06-18 | Also emit suggestions for usages in the `non_upper_case_globals` lint | Urgau | -0/+2 |
| 2025-06-17 | fix bugs in inline/force_inline and diagnostics of all attr parsers | Jana Dönszelmann | -0/+1 |
| 2025-06-18 | Dont suggest remove semi inside macro expansion for redundant semi lint | xizheyin | -2/+10 |
| 2025-06-13 | Auto merge of #142443 - matthiaskrgr:rollup-l1l6d0v, r=matthiaskrgr | bors | -4/+0 |
| 2025-06-12 | Rollup merge of #141162 - mejrs:gated, r=fee1-dead | Matthias Krüger | -26/+0 |
| 2025-06-12 | Make `missing_fragment_specifier` an unconditional error | Trevor Gross | -4/+0 |
| 2025-06-09 | Remove rustc_feature::Stability | mejrs | -26/+0 |
| 2025-06-09 | refactor `AttributeGate` and `rustc_attr!` to emit notes during feature chec... | mejrs | -4/+4 |
| 2025-06-04 | Replace `elided_named_lifetimes` with `mismatched_lifetime_syntaxes` | Jake Goulding | -54/+2 |
| 2025-06-04 | Introduce the `mismatched_lifetime_syntaxes` lint | Jake Goulding | -0/+125 |
| 2025-05-30 | Rollup merge of #133823 - estebank:issue-56328, r=petrochenkov | Matthias Krüger | -1/+3 |
| 2025-05-29 | Use `cfg_attr` AST placeholder AST `cfg_attr_trace` for diagnostics | Esteban Küber | -1/+3 |
| 2025-05-27 | Rollup merge of #141536 - Urgau:ambi_wide_ptr-cmp-diag, r=fee1-dead | Michael Goulet | -42/+68 |
| 2025-05-25 | Improve `ambiguous_wide_pointer_comparisons` lint compare diagnostics | Urgau | -42/+68 |