| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2020-01-27 | Rename `span_note_and_lint` to `span_lint_and_note` | Yuki Okushi | -1/+1 | |
| 2020-01-27 | Rename `span_help_and_lint` to `span_lint_and_help` | Yuki Okushi | -3/+3 | |
| 2020-01-18 | Rustup to rust-lang/rust#68204 | Yuki Okushi | -1/+6 | |
| 2020-01-15 | Add lint for default lint description | Brad Sherman | -4/+49 | |
| - Lint for any new lints that have the default lint description from the automation | ||||
| 2020-01-13 | Rustup to rust-lang/rust#68045 | Yuki Okushi | -1/+1 | |
| 2020-01-11 | Rustup to rust-lang/rust#67806 | Yuki Okushi | -2/+2 | |
| 2020-01-09 | Rustup to rust-lang/rust#67979 | Yuki Okushi | -2/+5 | |
| 2020-01-07 | Rustup to rust-lang/rust#67886 | Yuki Okushi | -3/+3 | |
| 2020-01-04 | Rustup to https://github.com/rust-lang/rust/pull/67853 | Philipp Hansch | -1/+1 | |
| Specifically caused by https://github.com/rust-lang/rust/pull/67786 | ||||
| 2019-12-31 | Rustup to rust-lang/rust#67707 | Yuki Okushi | -1/+1 | |
| 2019-12-30 | Rustup to rust-lang/rust#66942 | Yuki Okushi | -2/+2 | |
| 2019-12-27 | Rustup to rust-lang/rust#66936 | Yuki Okushi | -3/+3 | |
| 2019-12-22 | Add <'_> where necessary | flip1995 | -2/+2 | |
| 2019-12-21 | rustup "Merge `ast::Mutability` and `mir::Mutability`" | Lzu Tao | -2/+2 | |
| 2019-12-04 | Rustup to rust-lang/rust#66878 | Matthias Krüger | -1/+2 | |
| 2019-11-29 | fmt | Philipp Hansch | -1/+1 | |
| 2019-11-29 | Make triggering this lint less likely :paperclip: | Philipp Hansch | -1/+1 | |
| 2019-11-29 | Add custom ICE message that points to Clippy repo | Philipp Hansch | -0/+39 | |
| This utilizes https://github.com/rust-lang/rust/pull/60584 by setting our own `panic_hook` and pointing to our own issue tracker instead of the rustc issue tracker. This also adds a new internal lint to test the ICE message. **Potential downsides** * This essentially copies rustc's `report_ice` function as `report_clippy_ice`. I think that's how it's meant to be implemented, but maybe @jonas-schievink could have a look as well =) The downside of more-or-less copying this function is that we have to maintain it as well now. The original function can be found [here][original]. * `driver` now depends directly on `rustc` and `rustc_errors` Closes #2734 [original]: https://github.com/rust-lang/rust/blob/59367b074f1523353dddefa678ffe3cac9fd4e50/src/librustc_driver/lib.rs#L1185 | ||||
| 2019-11-11 | MutImmutable -> Immutable, MutMutable -> Mutable, CaptureClause -> CaptureBy | Manish Goregaokar | -2/+2 | |
| 2019-11-06 | rustup rust-lang/rust#65776 | Lzu Tao | -4/+4 | |
| 2019-10-24 | Fix lint_without_lint_pass lint | flip1995 | -20/+19 | |
| 2019-10-24 | Fix tests | flip1995 | -3/+1 | |
| 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-09-27 | Rustup to rust-lang/rust#64813 | flip1995 | -7/+7 | |
| 2019-08-29 | Use the spans returned by utils::method_calls | flip1995 | -3/+3 | |
| 2019-08-16 | Run rustfmt | flip1995 | -4/+1 | |
| 2019-08-16 | Use outer_expn_data instead of outer_expn_info | KRAAI, MATTHEW [VISUS] | -17/+16 | |
| 2019-08-02 | Doctests: Fix all complexity lint docs | Philipp Hansch | -5/+5 | |
| cc #4319 | ||||
| 2019-07-21 | Fix breakage due to rust-lang/rust#62705 | Michael Wright | -6/+6 | |
| Also rename `OUTER_EXPN_INFO` to `OUTER_EXPN_EXPN_INFO` to match new function names. | ||||
| 2019-06-20 | Fix warnings about unnecessary lifetime bounds | Lzu Tao | -2/+2 | |
| Rustup https://github.com/rust-lang/rust/pull/61172 | ||||
| 2019-06-08 | Add OUTER_EXPN_INFO lint | Michael Wright | -1/+58 | |
| 2019-06-06 | Remove `to_string()`s from CompilerLintFunctions | Michael Wright | -8/+8 | |
| 2019-06-01 | Make use of new `outer_expn_info()` function | Lzu Tao | -2/+1 | |
| 2019-05-18 | Dogfood | Oliver Scherer | -7/+10 | |
| 2019-05-17 | Prevent symbocalypse | Oliver Scherer | -6/+6 | |
| 2019-05-14 | Rustfmt all the things | Oliver Scherer | -1/+1 | |
| 2019-05-14 | Clippy dogfood | Oliver Scherer | -4/+5 | |
| 2019-05-14 | Use symbols instead of strings | Oliver Scherer | -8/+9 | |
| 2019-05-03 | Rustup to rustc 1.36.0-nightly (13fde05b1 2019-05-03) | Matthias Krüger | -3/+3 | |
| 2019-04-17 | Use lint pass macros | Matthew Kraai | -40/+9 | |
| Fixes #3917. | ||||
| 2019-04-17 | Fix lint_without_lint_pass internal lint | flip1995 | -1/+7 | |
| 2019-04-17 | Use {get,match}_def_path from LateContext | flip1995 | -3/+3 | |
| 2019-04-15 | Remove clippy::default_hash_types internal lint | flip1995 | -62/+3 | |
| 2019-03-07 | align with rust-lang/rust/#58992 | ljedrz | -2/+1 | |
| 2019-03-05 | move lint documentation into macro invocations | Andy Russell | -53/+53 | |
| 2019-03-01 | align with rust-lang/rust/#58836 | ljedrz | -1/+2 | |
| 2019-01-27 | rustup https://github.com/rust-lang/rust/pull/57726 | Matthias Krüger | -0/+15 | |
| 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-30 | rustup https://github.com/rust-lang/rust/pull/56225/ | Matthias Krüger | -1/+1 | |
| item.name -> item.ident.name | ||||
| 2018-12-29 | Remove crate:: prefixes from crate paths | Konrad Borowski | -11/+11 | |
| This is somewhat misleading, as those are actually external crates, and don't need a crate:: prefix. | ||||
