| Age | Commit message (Expand) | Author | Lines |
| 2022-02-25 | Auto merge of #93368 - eddyb:diagbld-guarantee, r=estebank | bors | -9/+13 |
| 2022-02-24 | Rollup merge of #94175 - Urgau:check-cfg-improvements, r=petrochenkov | Dylan DPC | -1/+34 |
| 2022-02-23 | Continue improvements on the --check-cfg implementation | Loïc BRANSTETT | -12/+13 |
| 2022-02-23 | rustc_errors: let `DiagnosticBuilder::emit` return a "guarantee of emission". | Eduard-Mihai Burtescu | -9/+13 |
| 2022-02-22 | Improve diagnostic of the unexpected_cfgs lint | Loïc BRANSTETT | -1/+33 |
| 2022-02-20 | Auto merge of #94062 - Mark-Simulacrum:drop-print-cfg, r=oli-obk | bors | -6/+6 |
| 2022-02-19 | Adopt let else in more places | est31 | -3/+2 |
| 2022-02-16 | Move ty::print methods to Drop-based scope guards | Mark Rousskov | -6/+6 |
| 2022-02-15 | Overhaul `Const`. | Nicholas Nethercote | -1/+1 |
| 2022-02-01 | add a rustc::query_stability lint | lcnr | -2/+5 |
| 2022-01-31 | Rollup merge of #90277 - pierwill:fix-70258-inference-terms, r=jackh726 | Matthias Krüger | -1/+1 |
| 2022-01-28 | Rollup merge of #92611 - Amanieu:asm-reference, r=m-ou-se | Matthias Krüger | -0/+1 |
| 2022-01-23 | rustc_lint: Reuse the set of registered tools from resolver | Vadim Petrochenkov | -12/+20 |
| 2022-01-23 | rustc_lint: Remove some redundant fields from `EarlyContext` | Vadim Petrochenkov | -20/+5 |
| 2022-01-19 | Add links to the reference and rust by example for asm! docs and lints | Amanieu d'Antras | -0/+1 |
| 2021-12-21 | Rollup merge of #91770 - TaKO8Ki:suggest-adding-cfg-test, r=joshtriplett | Matthias Krüger | -1/+9 |
| 2021-12-19 | Auto merge of #91957 - nnethercote:rm-SymbolStr, r=oli-obk | bors | -3/+3 |
| 2021-12-18 | Rollup merge of #92032 - petrochenkov:extblockpath, r=oli-obk | Matthias Krüger | -2/+2 |
| 2021-12-18 | hir: Do not introduce dummy type names for `extern` blocks in def paths | Vadim Petrochenkov | -2/+2 |
| 2021-12-18 | Rollup merge of #89090 - cjgillot:bare-dyn, r=jackh726 | Matthias Krüger | -10/+0 |
| 2021-12-16 | suggest adding a `#[cfg(test)]` to test modules | Takayuki Maeda | -1/+9 |
| 2021-12-15 | Remove unnecessary sigils around `Symbol::as_str()` calls. | Nicholas Nethercote | -3/+3 |
| 2021-12-12 | Address review feedback | Amanieu d'Antras | -1/+0 |
| 2021-12-12 | Stabilize asm! and global_asm! | Amanieu d'Antras | -1/+1 |
| 2021-12-11 | Remove useless variant. | Camille GILLOT | -20/+1 |
| 2021-12-04 | Lint bare traits in AstConv. | Camille GILLOT | -10/+0 |
| 2021-11-06 | Improve terminology around "after typeck" | pierwill | -1/+1 |
| 2021-11-04 | Optimize literal, doc comment lint as well, extract function. | Hans Kratz | -2/+2 |
| 2021-10-31 | Lint against RTL unicode codepoints in literals and comments | Esteban Küber | -1/+38 |
| 2021-10-28 | Revert "Add rustc lint, warning when iterating over hashmaps" | Mark Rousskov | -5/+2 |
| 2021-10-15 | allow `potential_query_instability` everywhere | lcnr | -2/+5 |
| 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 | -1/+2 |
| 2021-09-02 | ty::layout: split `LayoutOf` into required and (blanket) provided halves. | Eduard-Mihai Burtescu | -2/+2 |
| 2021-09-02 | ty::layout: implement `layout_of` automatically as a default method. | Eduard-Mihai Burtescu | -2/+3 |
| 2021-09-02 | rustc_target: move `LayoutOf` to `ty::layout`. | Eduard-Mihai Burtescu | -5/+4 |
| 2021-08-27 | rustc_target: require `TyAbiInterface` in `LayoutOf`. | Eduard-Mihai Burtescu | -1/+22 |
| 2021-08-27 | rustc_target: add lifetime parameter to `LayoutOf`. | Eduard-Mihai Burtescu | -1/+1 |
| 2021-08-18 | Error when warnings lint group is used with force-warn | Ryan Levick | -1/+10 |
| 2021-08-04 | Fix lint capitalization and ignoring, test with include_str | asquared31415 | -1/+1 |
| 2021-08-04 | Lint against named asm labels | asquared31415 | -0/+4 |
| 2021-08-03 | Use a multipart suggestion for the parentheses | Fabian Wolff | -3/+6 |
| 2021-07-31 | Require parentheses to avoid confusions around labeled break and loop express... | Fabian Wolff | -0/+5 |
| 2021-07-24 | Display an extra note for trailing semicolon lint with trailing macro | Aaron Hill | -0/+6 |
| 2021-07-24 | Auto merge of #87296 - Aaron1011:inert-warn, r=petrochenkov | bors | -0/+10 |
| 2021-07-21 | Rename force-warns to force-warn | Ryan Levick | -1/+1 |
| 2021-07-20 | Auto merge of #84959 - camsteffen:lint-suggest-group, r=estebank | bors | -7/+7 |
| 2021-07-19 | Warn on inert attributes used on bang macro invocation | Aaron Hill | -0/+10 |
| 2021-07-08 | Rollup merge of #86639 - eholk:lint-tool, r=petrochenkov | Yuki Okushi | -4/+40 |
| 2021-07-07 | Cleanup: unify lint name checking | Eric Holk | -18/+10 |