| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2020-01-13 | Rustup to rust-lang/rust#68045 | Yuki Okushi | -1/+1 | |
| 2020-01-11 | Rustup to rust-lang/rust#67806 | Yuki Okushi | -3/+2 | |
| 2020-01-11 | Apply review comments | Yuki Okushi | -6/+3 | |
| 2020-01-11 | Rustup to rust-lang/rust#67258 | Yuki Okushi | -2/+6 | |
| 2020-01-09 | Rustup to rust-lang/rust#67979 | Yuki Okushi | -2/+5 | |
| 2020-01-07 | Rustup to rust-lang/rust#67886 | Yuki Okushi | -2/+2 | |
| 2019-12-30 | Rustup to rust-lang/rust#66942 | Yuki Okushi | -3/+3 | |
| 2019-12-27 | Rustup to rust-lang/rust#66936 | Yuki Okushi | -7/+7 | |
| 2019-12-24 | rustup "Add span information to `ExprKind::Assign`" | Lzu Tao | -2/+5 | |
| 2019-12-22 | Add <'_> where necessary | flip1995 | -6/+6 | |
| 2019-12-04 | Rustup to rust-lang/rust#66878 | Matthias Krüger | -1/+2 | |
| 2019-11-27 | More borrowkind fixes | Manish Goregaokar | -4/+4 | |
| 2019-11-27 | Add BorrowKind::Ref | Manish Goregaokar | -3/+3 | |
| 2019-11-25 | Run rustfmt | flip1995 | -1/+4 | |
| 2019-11-25 | Rustup to rust-lang/rust#66671 | flip1995 | -2/+2 | |
| 2019-11-22 | Rustup to rust-lang/rust#66515 | flip1995 | -2/+2 | |
| Fixes #4835 | ||||
| 2019-11-11 | MutImmutable -> Immutable, MutMutable -> Mutable, CaptureClause -> CaptureBy | Manish Goregaokar | -1/+1 | |
| 2019-11-07 | Rustup to rust-lang/rust#65884 | flip1995 | -5/+9 | |
| 2019-10-14 | new lints around `#[must_use]` fns | Andre Bogus | -0/+3 | |
| `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-09-27 | Fix author lint | flip1995 | -3/+3 | |
| 2019-09-27 | Rustup to rust-lang/rust#64813 | flip1995 | -17/+17 | |
| 2019-09-25 | arm.pats -> arm.pat | Manish Goregaokar | -5/+2 | |
| 2019-08-25 | Rustup to https://github.com/rust-lang/rust/pull/63854 | Philipp Hansch | -2/+2 | |
| 2019-08-23 | Add missing field to LitKind::Str | Lzu Tao | -1/+1 | |
| 2019-08-18 | Fix breakage due to rust-lang/rust#61708 | Michael Wright | -0/+6 | |
| 2019-08-15 | Rustup to rust-lang/rust#63543 | flip1995 | -1/+1 | |
| 2019-08-02 | Doctests: Fix all complexity lint docs | Philipp Hansch | -2/+3 | |
| cc #4319 | ||||
| 2019-07-06 | Address reviews | Michael Wright | -1/+1 | |
| 2019-07-06 | Fix breakage due to rust-lang/rust#61988 | Michael Wright | -13/+2 | |
| 2019-06-19 | Fix missing field in ExprKind::Yield | Lzu Tao | -1/+1 | |
| Rustup rust-lang/rust#61941 | ||||
| 2019-05-28 | Fix `Block` dump in author lint | Oliver Scherer | -1/+12 | |
| 2019-05-10 | Start handling desugarings in author lint | Manish Goregaokar | -1/+27 | |
| 2019-05-10 | Add IfDesugar to desugaring_name | Manish Goregaokar | -0/+4 | |
| 2019-05-10 | Remove some unnecessary If arms | Manish Goregaokar | -19/+0 | |
| 2019-05-08 | rustup https://github.com/rust-lang/rust/pull/60586 | Matthias Krüger | -0/+1 | |
| cc https://github.com/rust-lang/rust/issues/60623 | ||||
| 2019-05-01 | more Use->DropTemps fixes | Matthias Krüger | -1/+1 | |
| 2019-05-01 | rustup https://github.com/rust-lang/rust/pull/60417/ | Matthias Krüger | -1/+1 | |
| cc https://github.com/rust-lang/rust/issues/60448 | ||||
| 2019-04-28 | Fix breakage due to rust-lang/rust#60225 | Michael Wright | -0/+6 | |
| 2019-04-17 | Use lint pass macros | Matthew Kraai | -13/+3 | |
| Fixes #3917. | ||||
| 2019-03-07 | fix missing a semicolon | rchaser53 | -1/+1 | |
| 2019-03-05 | move lint documentation into macro invocations | Andy Russell | -31/+31 | |
| 2019-02-28 | Error an unknown or deprecated Clippy attribute | flip1995 | -21/+22 | |
| 2019-02-20 | partially HirIdify lints | ljedrz | -2/+2 | |
| 2019-02-08 | Add a uitest subcommand to simplify UI test invocation | Philipp Hansch | -1/+1 | |
| This allows to run `TESTNAME=xxx cargo uitest` instead of `TESTNAME=xxx cargo test --test-compile-test` | ||||
| 2019-02-03 | Fix breakage due to rust-lang/rust#58079 | Michael Wright | -1/+1 | |
| The rustc change added HirId to a few nodes. As I understand it, the plan is to remove the NodeId from these nodes eventually. Where the NodeId was not being matched, I used `..` to try and avoid further breakage. Where it was, I used `_` to make the fix easier when NodeId is removed. | ||||
| 2019-02-01 | Adding lint for too many lines. | Araam Borhanian | -0/+2 | |
| 2019-01-27 | rustup https://github.com/rust-lang/rust/pull/57726 | Matthias Krüger | -0/+4 | |
| 2019-01-20 | Fix breakage due to rust-lang/rust#57651 | Michael Wright | -0/+1 | |
| 2019-01-20 | Fixed breakage due to rust-lang/rust#57489 | Michael Wright | -27/+18 | |
| 2019-01-08 | Remove all copyright license headers | Philipp Hansch | -9/+0 | |
| Discussion previously happened in https://github.com/rust-lang/rust/pull/43498 | ||||
