| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2022-06-19 | Be more hygenic with spans | Michael Goulet | -54/+36 | |
| 2022-03-08 | Change wording of suggestion to add missing `match` arm | Esteban Kuber | -27/+27 | |
| 2022-03-08 | When finding a match expr with multiple arms that requires more, suggest it | Esteban Kuber | -3/+15 | |
| Given ```rust match Some(42) { Some(0) => {} Some(1) => {} } ``` suggest ```rust match Some(42) { Some(0) => {} Some(1) => {} None | Some(_) => todo!(), } ``` | ||||
| 2022-03-08 | When finding a match expr with a single arm that requires more, suggest it | Esteban Kuber | -22/+110 | |
| Given ```rust match Some(42) { Some(0) => {} } ``` suggest ```rust match Some(42) { Some(0) => {} None | Some(_) => todo!(), } ``` | ||||
| 2022-03-08 | When encountering a match expr with no arms, suggest it | Esteban Kuber | -27/+37 | |
| Given ```rust match Some(42) {} ``` suggest ```rust match Some(42) { None | Some(_) => todo!(), } ``` | ||||
| 2022-03-03 | Cleanup feature gates. | Camille GILLOT | -13/+12 | |
| 2021-09-26 | Replace `Pat` with a new intermediate representation | Nadrieril | -1/+3 | |
| 2021-01-12 | Deduplicate some tests using revisions | Nadrieril | -62/+26 | |
| 2020-12-19 | Tweak diagnostics | Nadrieril | -8/+8 | |
| 2020-11-29 | `overlapping_range_endpoints` does not belong in the `unused` lint group | Nadrieril | -37/+39 | |
| 2020-11-29 | Improve error message | Nadrieril | -17/+32 | |
| 2020-11-29 | Be consistent about linting singletons | Nadrieril | -19/+3 | |
| 2020-11-29 | Rename the `overlapping_patterns` lint to `overlapping_range_endpoints` | Nadrieril | -33/+33 | |
| 2020-11-29 | Add tests | Nadrieril | -3/+19 | |
| 2020-11-28 | Correctly detect `usize`/`isize` range overlaps | Nadrieril | -2/+8 | |
| 2020-11-21 | Improve integer range tests | Nadrieril | -0/+873 | |
