| Age | Commit message (Expand) | Author | Lines |
| 2020-06-25 | Rollup merge of #72770 - crlf0710:mixed_script_confusable, r=Manishearth | Manish Goregaokar | -130/+226 |
| 2020-06-26 | Implement mixed script confusable lint. | Charles Lew | -3/+126 |
| 2020-06-24 | improper_ctypes: only allow params in defns mode | David Wood | -2/+8 |
| 2020-06-24 | improper_ctypes: allow pointers to sized types | David Wood | -1/+10 |
| 2020-06-24 | lints: add `improper_ctypes_definitions` | David Wood | -27/+83 |
| 2020-06-23 | Refactor non_ascii_idents lints, exclude ascii pair for confusable_idents lint. | Charles Lew | -131/+104 |
| 2020-06-21 | Make is_freeze and is_copy_modulo_regions take TyCtxtAt | Ralf Jung | -1/+1 |
| 2020-06-21 | Auto merge of #70946 - jumbatm:clashing-extern-decl, r=nagisa | bors | -5/+228 |
| 2020-06-20 | lint: normalize projections using opaque types | David Wood | -8/+19 |
| 2020-06-20 | Add ClashingExternDecl lint. | jumbatm | -5/+228 |
| 2020-06-19 | Rollup merge of #73300 - crlf0710:crate_level_only_check, r=petrochenkov | Manish Goregaokar | -7/+51 |
| 2020-06-19 | Rollup merge of #73257 - davidtwco:issue-73249-improper-ctypes-projection, r=... | Manish Goregaokar | -136/+104 |
| 2020-06-19 | ty: simplify `transparent_newtype_field` | David Wood | -1/+1 |
| 2020-06-19 | lint: unify enum variant, union and struct logic | David Wood | -125/+82 |
| 2020-06-19 | lint: prohibit fields with opaque types | David Wood | -14/+25 |
| 2020-06-19 | Rollup merge of #72497 - RalfJung:tag-term, r=oli-obk | Ralf Jung | -7/+7 |
| 2020-06-18 | Implement crate level only lints checking. | Charles Lew | -7/+51 |
| 2020-06-15 | make all uses of ty::Error or ConstKind::Error delay a span bug | mark | -1/+1 |
| 2020-06-15 | Auto merge of #72080 - matthewjasper:uniform-impl-trait, r=nikomatsakis | bors | -0/+4 |
| 2020-06-12 | Rollup merge of #72906 - lzutao:migrate-numeric-assoc-consts, r=dtolnay | Dylan DPC | -12/+12 |
| 2020-06-11 | Rollup merge of #73182 - Aaron1011:feature/call-fn-span, r=matthewjasper | Dylan DPC | -3/+3 |
| 2020-06-11 | Rename `TyKind::Def` to `OpaqueDef` | Matthew Jasper | -1/+1 |
| 2020-06-11 | Stop special casing top level TAIT | Matthew Jasper | -0/+4 |
| 2020-06-10 | Track span of function in method calls, and use this in #[track_caller] | Aaron Hill | -3/+3 |
| 2020-06-10 | Migrate to numeric associated consts | Lzu Tao | -12/+12 |
| 2020-06-09 | lint: transitive FFI-safety for transparent types | David Wood | -30/+39 |
| 2020-06-09 | lint: check for unit ret type after normalization | David Wood | -10/+21 |
| 2020-06-05 | properly handle feature gated lints | Joey Hain | -14/+15 |
| 2020-05-30 | tag/niche terminology cleanup | Ralf Jung | -7/+7 |
| 2020-05-29 | Rollup merge of #71862 - LeSeulArtichaut:unsafe-block-in-unsafe-fn, r=nikomat... | Ralf Jung | -2/+19 |
| 2020-05-28 | rustc_lint: Remove `unused_crate_dependencies` from the `unused` group | Vadim Petrochenkov | -1/+0 |
| 2020-05-27 | Use `LintId`s to check for gated lints | LeSeulArtichaut | -5/+5 |
| 2020-05-27 | Fix import | LeSeulArtichaut | -2/+1 |
| 2020-05-27 | Do not hardcode lint name | LeSeulArtichaut | -1/+2 |
| 2020-05-27 | Apply suggestions from code review | LeSeulArtichaut | -1/+18 |
| 2020-05-25 | Implement warning for unused dependencies. | Jeremy Fitzhardinge | -0/+1 |
| 2020-05-20 | introduce newtype'd `Predicate<'tcx>` | Bastian Kauschke | -4/+6 |
| 2020-05-20 | rename `Predicate` to `PredicateKind`, introduce alias | Bastian Kauschke | -4/+4 |
| 2020-05-17 | Assume unevaluated consts are equal to the other consts and add ConstEquate o... | Ben Lewis | -1/+2 |
| 2020-05-16 | Rollup merge of #72045 - RalfJung:incomplete-unsound, r=petrochenkov | Ralf Jung | -6/+14 |
| 2020-05-14 | Rollup merge of #71910 - mibac138:necessary-paren, r=cuviper | Dylan DPC | -4/+20 |
| 2020-05-12 | Remove ty::UnnormalizedProjection | Jack Huey | -1/+0 |
| 2020-05-09 | expand "incomplete feature" message to include unsoundness and link to tracki... | Ralf Jung | -6/+14 |
| 2020-05-08 | Remove ast::{Ident, Name} reexports. | Camille GILLOT | -12/+16 |
| 2020-05-06 | Fix unused_parens nested binary op false positive | mibac138 | -4/+12 |
| 2020-05-05 | Fix unused_parens false positive when using binary operations | mibac138 | -4/+12 |
| 2020-05-04 | Rollup merge of #71773 - tshepang:links, r=davidtwco | Dylan DPC | -3/+3 |
| 2020-05-03 | Rollup merge of #71542 - crlf0710:confusable_idents, r=petrochenkov | Dylan DPC | -3/+147 |
| 2020-05-03 | Add a fast code path to optimize `confusable_idents` lint for ASCII code base. | Charles Lew | -4/+49 |
| 2020-05-03 | Implement `confusable_idents` lint. | Charles Lew | -3/+102 |