| 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-07 | Normalize lint messages | Yuki Okushi | -1/+1 | |
| 2020-01-07 | Rustup to rust-lang/rust#67886 | Yuki Okushi | -1/+1 | |
| 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-27 | Rustup to rust-lang/rust#66936 | Yuki Okushi | -7/+7 | |
| 2019-12-04 | Rustup to rust-lang/rust#66878 | Matthias Krüger | -1/+2 | |
| 2019-09-27 | Rustup to rust-lang/rust#64813 | flip1995 | -6/+6 | |
| 2019-09-24 | Add a new lint for comparison chains | James Wang | -12/+1 | |
| 2019-08-22 | Add examples to some complexity lints | BO41 | -0/+4 | |
| 2019-08-19 | Remove in_macro_or_desugar | KRAAI, MATTHEW [VISUS] | -2/+2 | |
| 2019-08-05 | fmt | Philipp Hansch | -7/+3 | |
| 2019-08-05 | Fix needless_bool suggestion with if-else-if-else | Philipp Hansch | -6/+8 | |
| Closes #4334 | ||||
| 2019-08-02 | Doctests: Fix all complexity lint docs | Philipp Hansch | -2/+2 | |
| cc #4319 | ||||
| 2019-06-25 | get_parent_node_by_hir_id -> get_parent_node | Manish Goregaokar | -1/+1 | |
| 2019-06-22 | Fix fallout cause NodeId pruning | Lzu Tao | -1/+1 | |
| 2019-06-12 | Typos and minor grammar corrections | mgr-inz-rafal | -1/+1 | |
| 2019-05-11 | Rename in_macro to in_macro_or_desugar | Manish Goregaokar | -2/+2 | |
| 2019-05-10 | Fix needless_bool.rs | Manish Goregaokar | -3/+3 | |
| 2019-04-17 | Use lint pass macros | Matthew Kraai | -25/+3 | |
| Fixes #3917. | ||||
| 2019-03-10 | Various cosmetic improvements. | Alexander Regueiro | -2/+2 | |
| 2019-03-05 | move lint documentation into macro invocations | Andy Russell | -31/+31 | |
| 2019-02-26 | Auto merge of #3817 - rust-lang:fix-bool_comparison-on-non-bool, r=oli-obk | bors | -20/+20 | |
| Fix `bool_comparison` with non-`bool` expressions Fixes #3703. It just moves around the type check that was already there for some comparison to all of them, because if one type isn't `bool`, none of those comparison can be simplified. | ||||
| 2019-02-25 | Fix `bool_comparison` with non-`bool` expressions | mcarton | -20/+20 | |
| 2019-02-24 | HirIdify some lints | ljedrz | -2/+2 | |
| 2019-01-27 | rustup https://github.com/rust-lang/rust/pull/57726 | Matthias Krüger | -0/+8 | |
| 2019-01-22 | Added "make_return" and "blockify" convenience methods in Sugg and used them ↵ | Grzegorz Bartoszek | -8/+6 | |
| in "needless_bool". | ||||
| 2019-01-21 | Auto merge of #3680 - g-bartoszek:needless-bool-else-if-brackets, r=oli-obk | bors | -1/+18 | |
| needless bool lint suggestion is wrapped in brackets if it is an "els… …e" clause of an "if-else" statement | ||||
| 2019-01-21 | formatting fix | Grzegorz Bartoszek | -1/+0 | |
| 2019-01-21 | Update clippy_lints/src/needless_bool.rs | Oliver Scherer | -1/+1 | |
| Co-Authored-By: g-bartoszek <grzegorz.bartoszek@thaumatec.com> | ||||
| 2019-01-21 | formatting fix | Grzegorz Bartoszek | -1/+1 | |
| 2019-01-20 | needless bool lint suggestion is wrapped in brackets if it is an "else" ↵ | Grzegorz Bartoszek | -1/+19 | |
| clause of an "if-else" statement | ||||
| 2019-01-20 | Fixed breakage due to rust-lang/rust#57489 | Michael Wright | -1/+1 | |
| 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 | -6/+6 | |
| This is somewhat misleading, as those are actually external crates, and don't need a crate:: prefix. | ||||
| 2018-12-17 | Changes lint sugg to bitwise and operator `&` | Lucas Lois | -2/+2 | |
| 2018-12-16 | Implements lint for order comparisons against bool | Lucas Lois | -24/+80 | |
| 2018-12-03 | Adds inequality cases to bool comparison lint | Lucas Lois | -64/+66 | |
| The lint now checks cases like `y != true` | ||||
| 2018-11-27 | Fix some formatting issues | flip1995 | -4/+3 | |
| 2018-11-27 | Run rustfmt on clippy_lints | flip1995 | -17/+31 | |
| 2018-11-27 | Add applicability level to (nearly) every span_lint_and_sugg function | flip1995 | -13/+15 | |
| 2018-11-27 | Add Applicability::Unspecified to span_lint_and_sugg functions | flip1995 | -2/+8 | |
| 2018-11-02 | clippy: fix pedantic warnings and run clippy::pedantic lints on the codebase. | Matthias Krüger | -1/+3 | |
| Turn on pedantic lints in dogfood and base tests. needless_bool: fix clippy::items-after-statements redundant_pattern_matching: fix clippy::similar-names mods.rs: fix clippy::explicit-iter-loop returns.rs: allow clippy::cast-possible-wrap Fixes #3172 | ||||
| 2018-10-29 | Fix #3335 rev2: bool_comparison triggers 3 times on same code | Giorgio Gambino | -50/+51 | |
| 2018-10-28 | Fix #3335: bool_comparison triggers 3 times on same code | Giorgio Gambino | -49/+51 | |
| 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 | -5/+5 | |
| 2018-08-29 | Switch to declare_tool_lint macro | flip1995 | -1/+1 | |
| 2018-08-28 | Update imports and rustup | Oliver Schneider | -1/+1 | |
| 2018-08-19 | codemap -> source_map | Manish Goregaokar | -1/+1 | |
| https://github.com/rust-lang/rust/pull/52953 | ||||
