| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-07-31 | Consider operator's span when computing binop expr span | Michael Goulet | -8/+10 | |
| 2025-05-25 | Improve `ambiguous_wide_pointer_comparisons` lint compare diagnostics | Urgau | -25/+125 | |
| 2025-02-14 | Use underline suggestions for purely 'additive' replacements | Michael Goulet | -3/+2 | |
| 2025-02-10 | Show diff suggestion format on verbose replacement | Esteban Küber | -72/+108 | |
| ``` error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields --> $DIR/attempted-access-non-fatal.rs:7:15 | LL | let _ = 2.l; | ^ | help: if intended to be a floating point literal, consider adding a `0` after the period and a `f64` suffix | LL - let _ = 2.l; LL + let _ = 2.0f64; | ``` | ||||
| 2024-12-21 | Properly record metavar spans for other expansions other than TT | Michael Goulet | -1/+1 | |
| 2024-08-01 | Do not underline suggestions for code that is already there | Esteban Küber | -19/+19 | |
| When a suggestion part is for already present code, do not highlight it. If after that there are no highlights left, do not show the suggestion at all. Fix clippy lint suggestion incorrectly treated as `span_help`. | ||||
| 2024-03-29 | Add support for NonNull in ambiguous_wide_ptr_comparisions | Urgau | -51/+84 | |
| 2024-03-29 | Add detection of [Partial]Ord methods to the ambiguous wide ptr cmp lint | Urgau | -53/+185 | |
| 2024-02-18 | macro_rules: Preserve all metavariable spans in a global side table | Vadim Petrochenkov | -7/+7 | |
| 2024-01-05 | macro_rules: Add more tests for using `tt` in addition to `ident` | Vadim Petrochenkov | -3/+14 | |
| Generally, `tt` and `ident` should behave identically, modulo the latter accepting only a subset of token trees. | ||||
| 2023-12-06 | Add warn-by-default lint against ambiguous wide pointer comparisons | Urgau | -0/+452 | |
