| Age | Commit message (Expand) | Author | Lines |
| 2021-08-25 | Use if-let guards in the codebase | Léo Lanteri Thauvin | -41/+38 |
| 2021-08-25 | Convert some functions to return Cow<'static,str> instead of String to reduce... | klensy | -2/+2 |
| 2021-08-24 | Auto merge of #87739 - Aaron1011:remove-used-attrs, r=wesleywiser | bors | -1/+43 |
| 2021-08-22 | Fix more “a”/“an” typos | Frank Steffahn | -1/+1 |
| 2021-08-22 | Fix typos “a”→“an” | Frank Steffahn | -9/+9 |
| 2021-08-21 | Remove `Session.used_attrs` and move logic to `CheckAttrVisitor` | Aaron Hill | -1/+43 |
| 2021-08-18 | Remove box syntax from rustc_parse | est31 | -8/+7 |
| 2021-08-15 | Introduce hir::ExprKind::Let - Take 2 | Caio | -1/+1 |
| 2021-08-12 | Use smaller spans for some structured suggestions | Esteban Kuber | -39/+46 |
| 2021-08-11 | Warn when an escaped newline skips multiple lines | Anton Golov | -0/+5 |
| 2021-08-08 | Auto merge of #87235 - poliorcetics:issue-87217-fn-quali-order, r=nagisa | bors | -1/+34 |
| 2021-08-04 | Auto merge of #87026 - FabianWolff:issue-86948, r=estebank | bors | -4/+51 |
| 2021-08-03 | Rollup merge of #87646 - JohnTitor:fix-parser-ice, r=oli-obk | Yuki Okushi | -3/+1 |
| 2021-08-02 | Rollup merge of #87659 - FabianWolff:issue-87397, r=davidtwco | Cameron Steffen | -8/+29 |
| 2021-08-02 | Better message for invalid keyword placement in fn | Alexis Bourget | -1/+34 |
| 2021-08-01 | Auto merge of #87449 - matthiaskrgr:clippyy_v2, r=nagisa | bors | -2/+1 |
| 2021-07-31 | Auto merge of #87662 - FabianWolff:rb-string, r=estebank | bors | -3/+11 |
| 2021-07-31 | Require parentheses to avoid confusions around labeled break and loop express... | Fabian Wolff | -4/+51 |
| 2021-07-31 | Suggest `br` if the unknown string prefix `rb` is found | Fabian Wolff | -3/+11 |
| 2021-07-31 | Fix invalid suggestions for non-ASCII characters in byte constants | Fabian Wolff | -8/+29 |
| 2021-07-30 | Auto merge of #86754 - estebank:use-multispans-more, r=varkor | bors | -10/+8 |
| 2021-07-31 | Fix a parser ICE on invalid `fn` body | Yuki Okushi | -3/+1 |
| 2021-07-30 | Use multispan suggestions more often | Esteban Küber | -10/+8 |
| 2021-07-30 | Add warning when whitespace is not skipped after an escaped newline. | Anton Golov | -0/+6 |
| 2021-07-27 | Auto merge of #85305 - MarcusDunn:master, r=pnkfelix | bors | -1/+1 |
| 2021-07-25 | clippy::filter_map_identity | Matthias Krüger | -2/+1 |
| 2021-07-24 | fix code to suggest `;` on parse error | Elliot Bobrow | -57/+57 |
| 2021-07-18 | Auto merge of #87242 - JohnTitor:rollup-t9rmwpo, r=JohnTitor | bors | -1/+8 |
| 2021-07-18 | Auto merge of #87071 - inquisitivecrystal:inclusive-range, r=estebank | bors | -7/+42 |
| 2021-07-18 | Rollup merge of #86814 - Aaron1011:inner-doc-recover, r=estebank | Yuki Okushi | -1/+8 |
| 2021-07-14 | Suggest a path separator if a stray colon is found in a match arm | Fabian Wolff | -15/+77 |
| 2021-07-11 | Give a helpful error for the mistake `..==` | Aris Merchant | -7/+42 |
| 2021-07-11 | Auto merge of #83918 - workingjubilee:stable-rangefrom-pat, r=joshtriplett | bors | -2/+0 |
| 2021-07-08 | Rollup merge of #86932 - rylev:fix-ice-86895, r=estebank | Yuki Okushi | -1/+7 |
| 2021-07-08 | Rollup merge of #86812 - FabianWolff:recover-dyn-mut, r=petrochenkov | Yuki Okushi | -1/+21 |
| 2021-07-07 | Fix ICE when misplaced visibility cannot be properly parsed | Ryan Levick | -1/+7 |
| 2021-07-06 | rename rust_2021_token_prefixes to rust_2021_prefixes_incompatible_syntax | Ryan Levick | -2/+2 |
| 2021-07-06 | rust_2021_token_prefixes | Ryan Levick | -2/+2 |
| 2021-07-06 | Rename reserved_prefix lint to reserved_prefixes | Ryan Levick | -2/+2 |
| 2021-07-02 | Recover from a misplaced inner doc comment | Aaron Hill | -1/+8 |
| 2021-07-02 | Recover from `&dyn mut ...` parse errors | Fabian Wolff | -1/+21 |
| 2021-06-26 | No reserved_prefix suggestion in proc macro call_site. | Mara Bos | -11/+13 |
| 2021-06-26 | Rename 'bad prefix' to 'unknown prefix'. | Mara Bos | -5/+5 |
| 2021-06-26 | Check the span's edition for the reserved prefixes. | Mara Bos | -15/+16 |
| 2021-06-26 | Improve comments for reserved prefixes. | Mara Bos | -1/+4 |
| 2021-06-26 | Add migration lint for reserved prefixes. | Mara Bos | -7/+16 |
| 2021-06-26 | Fix note in reserved prefix error. | Mara Bos | -1/+1 |
| 2021-06-26 | Add machine applicable suggestion to unknown prefix error. | Mara Bos | -5/+4 |
| 2021-06-26 | Reserve prefixed identifiers and string literals (RFC 3101) | lrh2000 | -1/+31 |
| 2021-06-26 | Auto merge of #86586 - Smittyvb:https-everywhere, r=petrochenkov | bors | -1/+1 |