| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2020-01-27 | Rename `span_note_and_lint` to `span_lint_and_note` | Yuki Okushi | -5/+5 | |
| 2020-01-27 | Rename `span_help_and_lint` to `span_lint_and_help` | Yuki Okushi | -2/+2 | |
| 2020-01-25 | dont fire possible_missing_comma if intendation is present | Mikhail Babenko | -16/+22 | |
| 2020-01-13 | Rustup to rust-lang/rust#68045 | Yuki Okushi | -1/+2 | |
| 2020-01-11 | Rustup to rust-lang/rust#67806 | Yuki Okushi | -3/+2 | |
| 2019-12-24 | rustup "Add span information to `ExprKind::Assign`" | Lzu Tao | -1/+1 | |
| 2019-12-04 | Rustup to rust-lang/rust#66878 | Matthias Krüger | -1/+2 | |
| 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-09 | New lint: suspicious_unary_op_formatting | Nikos Filippakis | -1/+64 | |
| Lints when, on the RHS of a BinOp, there is a UnOp without a space before the operator but with a space after (e.g. foo >- 1). Signed-off-by: Nikos Filippakis <nikolaos.filippakis@cern.ch> | ||||
| 2019-09-27 | Rustup to rust-lang/rust#64813 | flip1995 | -8/+8 | |
| 2019-08-19 | Remove in_macro_or_desugar | KRAAI, MATTHEW [VISUS] | -4/+4 | |
| 2019-06-24 | Simplify unsugar_if to just an if expr check | flip1995 | -12/+12 | |
| 2019-06-24 | Remove ast:: prefix from types | flip1995 | -20/+20 | |
| 2019-06-24 | Put 'if let' back into comment. | Mazdak Farrokhzad | -1/+1 | |
| 2019-06-23 | Fix fallout from rust-lang/rust PR 60861. | Mazdak Farrokhzad | -4/+2 | |
| 2019-05-11 | Rename in_macro to in_macro_or_desugar | Manish Goregaokar | -4/+4 | |
| 2019-04-17 | Use lint pass macros | Matthew Kraai | -17/+6 | |
| Fixes #3917. | ||||
| 2019-04-14 | cargo fmt | Philipp Hansch | -3/+2 | |
| 2019-04-14 | Refactor suspicious_else_formatting using if_chain | Philipp Hansch | -35/+32 | |
| 2019-04-14 | Remove `except` in suspicious_else_formatting | Philipp Hansch | -16/+16 | |
| This was causing two different ICEs in #3741. The first was fixed in #3925. The second one is fixed with this commit: We just don't `expect` anymore. If the snippet doesn't contain an `else`, we stop emitting the lint because it's not a suspiciously formatted else anyway. | ||||
| 2019-04-08 | cargo fmt | Philipp Hansch | -2/+3 | |
| 2019-04-07 | Fix ICE in suspicious_else_formatting | Philipp Hansch | -2/+2 | |
| 2019-03-05 | move lint documentation into macro invocations | Andy Russell | -56/+56 | |
| 2019-01-27 | rustup https://github.com/rust-lang/rust/pull/57726 | Matthias Krüger | -0/+4 | |
| 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 | -4/+4 | |
| This is somewhat misleading, as those are actually external crates, and don't need a crate:: prefix. | ||||
| 2018-12-20 | Workaround rust-lang/rust#43081 | HMPerson1 | -0/+5 | |
| 2018-12-20 | Teach `suspicious_else_formatting` about `if .. {..} {..}` | HMPerson1 | -17/+50 | |
| 2018-11-27 | Run rustfmt on clippy_lints | flip1995 | -12/+8 | |
| 2018-11-06 | Remove `+` from `has_unary_equivalent` | Michael Wright | -3/+2 | |
| Rust doesn't has a unary + operator! | ||||
| 2018-11-04 | Fix `collapsible_if` error | Michael Wright | -15/+13 | |
| 2018-11-04 | Fix `possible_missing_comma` false positives | Michael Wright | -13/+23 | |
| `possible_missing_comma` should only trigger when the binary operator has unary equivalent. Otherwise, it's not possible to insert a comma without breaking compilation. The operators identified were `+`, `&`, `*` and `-`. This fixes the specific examples given in issues #3244 and #3396 but doesn't address the conflict this lint has with the style of starting a line with a binary operator. | ||||
| 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 | -4/+4 | |
| 2018-08-29 | Switch to declare_tool_lint macro | flip1995 | -1/+1 | |
| 2018-08-28 | Update imports and rustup | Oliver Schneider | -1/+1 | |
| 2018-07-23 | Rustup | Oliver Schneider | -6/+6 | |
| 2018-07-19 | Remove import of rustc | Manish Goregaokar | -0/+1 | |
| 2018-05-30 | Run rustfix | Mateusz Mikuła | -1/+1 | |
| 2018-03-29 | Address review comments | Oliver Schneider | -1/+1 | |
| 2018-03-28 | Categorize all the lints! | Oliver Schneider | -6/+6 | |
| 2017-11-05 | Cargo fmt | topecongiro | -2/+2 | |
| 2017-09-05 | Run nightly rustfmt | Oliver Schneider | -8/+9 | |
| 2017-08-31 | Accessing `Span` internals is deprecated | Oliver Schneider | -31/+6 | |
| 2017-08-14 | Rustfmt | Oliver Schneider | -34/+54 | |
| 2017-04-12 | Run rustfmt | Oliver Schneider | -8/+32 | |
| 2017-04-01 | Remove unused cs parameter for is_macro and friends | Enrico Schmitz | -3/+3 | |
| 2017-03-31 | First try for a fix for rustc 1.18.0-nightly (5c94997b6 2017-03-30 | Enrico Schmitz | -8/+7 | |
| 2017-02-16 | typos: coma -> comma | Ben Boeckel | -1/+1 | |
| 2017-02-05 | Fix lint name in comment too | Bood Qian | -1/+1 | |
