| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2020-01-13 | Rustup to rust-lang/rust#68045 | Yuki Okushi | -1/+1 | |
| 2020-01-07 | Rustup to rust-lang/rust#67886 | Yuki Okushi | -1/+2 | |
| 2019-12-27 | Rustup to rust-lang/rust#66936 | Yuki Okushi | -11/+19 | |
| 2019-10-24 | Rustup to rust-lang/rust#65657 | flip1995 | -3/+3 | |
| 2019-10-14 | new lints around `#[must_use]` fns | Andre Bogus | -0/+1 | |
| `must_use_unit` lints unit-returning functions with a `#[must_use]` attribute, suggesting to remove it. `double_must_use` lints functions with a plain `#[must_use]` attribute, but which return a type which is already `#[must_use]`, so the attribute has no benefit. `must_use_candidate` is a pedantic lint that lints functions and methods that return some non-unit type that is not already `#[must_use]` and suggests to add the annotation. | ||||
| 2019-10-10 | Use match_function_call wherever possible | Matthias Seiffert | -3/+3 | |
| 2019-09-27 | Rustup to rust-lang/rust#64813 | flip1995 | -17/+17 | |
| 2019-09-26 | Rustup https://github.com/rust-lang/rust/pull/64513 | Lzu Tao | -1/+1 | |
| 2019-07-06 | Address reviews | Michael Wright | -0/+17 | |
| 2019-05-21 | Rustup to rustc 1.36.0-nightly (dbfe70dfc 2019-05-22) | Manish Goregaokar | -2/+2 | |
| 2019-05-18 | Dogfood and rustfmt | Oliver Scherer | -4/+2 | |
| 2019-05-17 | Prevent symbocalypse | Oliver Scherer | -20/+18 | |
| 2019-05-14 | Rustfmt all the things | Oliver Scherer | -3/+5 | |
| 2019-05-14 | Clippy dogfood | Oliver Scherer | -1/+1 | |
| 2019-05-14 | Use symbols instead of strings | Oliver Scherer | -16/+18 | |
| 2019-05-10 | Add util function for desugaring if block | Manish Goregaokar | -0/+21 | |
| 2019-04-17 | Use {get,match}_def_path from LateContext | flip1995 | -3/+3 | |
| 2019-03-10 | Various cosmetic improvements. | Alexander Regueiro | -2/+2 | |
| 2019-03-08 | Refactor: Remove utils::opt_def_id | Philipp Hansch | -2/+2 | |
| This removes some indirection. Probably this method was uplifted to rustc at some point? | ||||
| 2019-01-20 | Fixed breakage due to rust-lang/rust#57489 | Michael Wright | -14/+8 | |
| 2019-01-08 | Remove all copyright license headers | Philipp Hansch | -9/+0 | |
| Discussion previously happened in https://github.com/rust-lang/rust/pull/43498 | ||||
| 2018-12-29 | Remove crate:: prefixes from crate paths | Konrad Borowski | -3/+3 | |
| This is somewhat misleading, as those are actually external crates, and don't need a crate:: prefix. | ||||
| 2018-11-27 | Run rustfmt on clippy_lints | flip1995 | -41/+43 | |
| 2018-10-08 | Merge pull request #3285 from ↵ | Philipp Hansch | -8/+8 | |
| devonhollowood/pedantic-dogfood-items-after-statements Pedantic dogfood: `items_after_statements` | ||||
| 2018-10-07 | Fix items_after_statements for sub-functions | Devon Hollowood | -8/+8 | |
| 2018-10-06 | Add license header to Rust files | Manish Goregaokar | -0/+10 | |
| 2018-09-15 | Reintroduce `extern crate` for non-Cargo dependencies. | Eduard-Mihai Burtescu | -3/+3 | |
| 2018-08-29 | Adapt codebase to the tool_lints | flip1995 | -1/+1 | |
| 2018-08-22 | rustup, fix breakage introduced by https://github.com/rust-lang/rust/pull/53581 | Matthias Krüger | -1/+1 | |
| 2018-07-23 | Rustup | Oliver Schneider | -1/+1 | |
| 2018-07-20 | Remove import of if_chain | Manish Goregaokar | -0/+1 | |
| 2018-07-16 | Update for hir renamings in rustc | Oliver Schneider | -3/+3 | |
| 2018-07-16 | StmtKind | csmoe | -2/+2 | |
| 2018-07-16 | BinOpKind | csmoe | -1/+1 | |
| 2018-07-16 | ExprKind | csmoe | -29/+29 | |
| 2018-05-30 | Run rustfix | Mateusz Mikuła | -1/+1 | |
| 2018-05-29 | Update to nightly 2018-05-28 | Mateusz Mikuła | -1/+1 | |
| 2018-05-08 | Check that we don't treat any type but a range type as a range | Oliver Schneider | -2/+31 | |
| 2018-05-03 | Rustup field -> method transition of ..= | Oliver Schneider | -6/+13 | |
| 2017-11-05 | Cargo fmt | topecongiro | -8/+5 | |
| 2017-10-23 | mechanically swap if_let_chain -> if_chain | Alex Burka | -50/+55 | |
| 2017-10-13 | Fix panic with fake `Range` type | sinkuu | -9/+8 | |
| 2017-09-12 | Rustup | Oliver Schneider | -4/+4 | |
| 2017-09-05 | Run nightly rustfmt | Oliver Schneider | -37/+35 | |
| 2017-09-03 | Run rustfmt | Manish Goregaokar | -1/+3 | |
| 2017-08-24 | Rename `match_path_old` to `match_path` | Alexey Zabelin | -7/+7 | |
| The old `match_path` was renamed to `match_qpath`. As per #1983. | ||||
| 2017-08-18 | is_from_for_loop: document what first check matches | Joonas Koivunen | -0/+7 | |
| Removing the first check will break a lot of for-loop UI tests and the dogfood test. | ||||
| 2017-08-18 | is_from_for_desugar: add match for `for _ in x` | Joonas Koivunen | -0/+16 | |
| This will avoid `let_unit_value` in the examples in the ui-test. It might match too widely. | ||||
| 2017-08-15 | Rustup | Oliver Schneider | -1/+1 | |
| 2017-08-14 | Rustfmt | Oliver Schneider | -5/+10 | |
