| Age | Commit message (Expand) | Author | Lines |
| 2021-11-15 | Stabilize format_args_capture | Josh Triplett | -1/+1 |
| 2021-11-12 | rustc_feature: Convert `BuiltinAttribute` from tuple to a struct | Vadim Petrochenkov | -6/+5 |
| 2021-11-07 | Auto merge of #90668 - matthiaskrgr:clippy_nov7, r=jyn514 | bors | -67/+53 |
| 2021-11-07 | more clippy fixes | Matthias Krüger | -67/+53 |
| 2021-11-07 | ast: Fix naming conventions in AST structures | Vadim Petrochenkov | -5/+4 |
| 2021-11-04 | Optimize literal, doc comment lint as well, extract function. | Hans Kratz | -10/+6 |
| 2021-11-01 | Auto merge of #90463 - matthiaskrgr:rollup-eljk9vo, r=matthiaskrgr | bors | -1/+0 |
| 2021-10-31 | Feature gate and make must_not_suspend allow-by-default | Gus Wynn | -1/+0 |
| 2021-10-31 | Lint against RTL unicode codepoints in literals and comments | Esteban Küber | -1/+202 |
| 2021-10-28 | Revert "Add rustc lint, warning when iterating over hashmaps" | Mark Rousskov | -65/+6 |
| 2021-10-24 | Rollup merge of #89558 - lcnr:query-stable-lint, r=estebank | Matthias Krüger | -6/+65 |
| 2021-10-22 | Rollup merge of #89895 - camsteffen:for-loop-head-span, r=davidtwco | Yuki Okushi | -2/+1 |
| 2021-10-21 | ignore `potential_query_instability` in rustdoc | lcnr | -0/+15 |
| 2021-10-18 | Rollup merge of #89987 - pierwill:fix-85526-docs-hidden-assoc, r=GuillaumeGomez | Matthias Krüger | -0/+18 |
| 2021-10-17 | Check implementing type for `#[doc(hidden)]` | pierwill | -0/+18 |
| 2021-10-17 | Some "parenthesis" and "parentheses" fixes | r00ster91 | -1/+1 |
| 2021-10-15 | Don't mark for loop head span with desugaring | Cameron Steffen | -2/+1 |
| 2021-10-15 | allow `potential_query_instability` everywhere | lcnr | -2/+6 |
| 2021-10-15 | add a `rustc::query_stability` lint | lcnr | -4/+44 |
| 2021-10-11 | Add enum_intrinsics_non_enums lint | Flying-Toast | -0/+109 |
| 2021-10-08 | Rollup merge of #89672 - klensy:unwrap-or-macro, r=jackh726 | Guillaume Gomez | -2/+4 |
| 2021-10-08 | clippy::complexity fixes | Matthias Krüger | -2/+1 |
| 2021-10-08 | remove unwrap_or! macro | klensy | -2/+4 |
| 2021-10-06 | Use get_diagnostic_name | Cameron Steffen | -38/+38 |
| 2021-10-04 | Rollup merge of #89473 - FabianWolff:issue-89469, r=joshtriplett | Jubilee | -6/+7 |
| 2021-10-04 | Rollup merge of #89483 - hkmatsumoto:patch-diagnostics-2, r=estebank | Jubilee | -8/+7 |
| 2021-10-03 | Rollup merge of #88481 - bjorn3:remove_feature_gates, r=cjgillot | Manish Goregaokar | -1/+0 |
| 2021-10-03 | Fix extra `non_snake_case` warning for shorthand field bindings | Fabian Wolff | -6/+7 |
| 2021-10-03 | Practice diagnostic message convention | Hirochika Matsumoto | -8/+7 |
| 2021-10-03 | Auto merge of #89479 - camsteffen:diag-naming, r=Manishearth | bors | -7/+7 |
| 2021-10-03 | Auto merge of #84267 - dtolnay:ptrunit, r=nagisa | bors | -0/+9 |
| 2021-10-02 | Make diangostic item names consistent | Cameron Steffen | -7/+7 |
| 2021-10-02 | Remove various unused feature gates | bjorn3 | -1/+0 |
| 2021-09-30 | Do not pass hir::Crate to lints. | Camille GILLOT | -7/+5 |
| 2021-09-29 | Avoid more invocations of hir_crate query. | Camille GILLOT | -2/+8 |
| 2021-09-28 | rustc_session: Remove lint store from `Session` | Vadim Petrochenkov | -15/+0 |
| 2021-09-26 | Pass real crate-level attributes to `pre_expansion_lint` | Samuel Moelius | -4/+23 |
| 2021-09-22 | Auto merge of #88865 - guswynn:must_not_suspend, r=oli-obk | bors | -0/+1 |
| 2021-09-20 | Adjust documentation for compatibility with 2021 | Mark Rousskov | -3/+3 |
| 2021-09-19 | Auto merge of #88703 - cjgillot:lazymod, r=petrochenkov | bors | -4/+2 |
| 2021-09-17 | Rollup merge of #87529 - FabianWolff:issue-87496, r=nikomatsakis | Yuki Okushi | -2/+8 |
| 2021-09-15 | Auto merge of #88558 - fee1-dead:const-drop, r=oli-obk | bors | -0/+5 |
| 2021-09-12 | Gather module items after lowering. | Camille GILLOT | -4/+2 |
| 2021-09-11 | must_not_suspend impl | Gus Wynn | -0/+1 |
| 2021-09-11 | Rollup merge of #88779 - estebank:unused-delims, r=davidtwco | Jubilee | -68/+52 |
| 2021-09-09 | Use more accurate spans for "unused delimiter" lint | Esteban Kuber | -68/+52 |
| 2021-09-09 | Make `abi::Abi` `Copy` and remove a *lot* of refs | Andreas Liljeqvist | -4/+1 |
| 2021-09-09 | fmt | Deadbeef | -2/+2 |
| 2021-09-09 | Do not lint for ~const Drop bounds | Deadbeef | -0/+5 |
| 2021-09-05 | Auto merge of #88435 - cjgillot:no-walk-crate, r=Aaron1011 | bors | -4/+3 |