| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2020-01-27 | Rename `span_help_and_lint` to `span_lint_and_help` | Yuki Okushi | -2/+2 | |
| 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 | -4/+4 | |
| 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-04 | Rustup to rust-lang/rust#66878 | Matthias Krüger | -1/+2 | |
| 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 | Rustup to rust-lang/rust#64813 | flip1995 | -6/+6 | |
| 2019-08-19 | Remove in_macro_or_desugar | KRAAI, MATTHEW [VISUS] | -2/+2 | |
| 2019-08-03 | Doctests: Enable running doc tests for pedantic lints | Philipp Hansch | -0/+10 | |
| 2019-06-24 | Pacify rustfmt. | Mazdak Farrokhzad | -3/+2 | |
| 2019-06-23 | Fix fallout from rust-lang/rust PR 60861. | Mazdak Farrokhzad | -6/+6 | |
| 2019-05-11 | Rename in_macro to in_macro_or_desugar | Manish Goregaokar | -2/+2 | |
| 2019-04-17 | Use lint pass macros | Matthew Kraai | -13/+2 | |
| Fixes #3917. | ||||
| 2019-03-12 | Auto merge of #3871 - taiki-e:needless_continue, r=phansch | bors | -14/+26 | |
| Fix `needless_continue` false positive If the `continue` has a label, check it matches the label of the loop. Fixes https://github.com/rust-lang/rust-clippy/issues/2329 | ||||
| 2019-03-12 | Run more doc tests | Philipp Hansch | -7/+13 | |
| This executes some more doc tests that were ignored before. | ||||
| 2019-03-12 | Fix `needless_continue` false positive | Taiki Endo | -14/+26 | |
| 2019-03-05 | move lint documentation into macro invocations | Andy Russell | -59/+59 | |
| 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-11-27 | Run rustfmt on clippy_lints | flip1995 | -19/+29 | |
| 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-08-19 | codemap -> source_map | Manish Goregaokar | -1/+1 | |
| https://github.com/rust-lang/rust/pull/52953 | ||||
| 2018-07-23 | Rustup | Oliver Schneider | -5/+5 | |
| 2018-07-19 | Remove import of rustc | Manish Goregaokar | -0/+1 | |
| 2018-06-25 | Fix clippy_lints doc-tests | Mateusz Mikuła | -5/+5 | |
| 2018-05-30 | Run rustfix | Mateusz Mikuła | -1/+1 | |
| 2018-05-17 | Rustup to 2018-05-16 | Mateusz Mikuła | -1/+1 | |
| 2018-03-28 | Categorize all the lints! | Oliver Schneider | -2/+2 | |
| 2018-03-16 | Apply clippy suggestions | Mateusz Mikuła | -2/+2 | |
| Signed-off-by: Mateusz Mikuła <mati865@gmail.com> | ||||
| 2017-11-05 | Cargo fmt | topecongiro | -19/+21 | |
| 2017-10-20 | Fixed some code in clippy to pass the new, removed formatting changes. | Paul Florence | -4/+4 | |
| 2017-09-05 | Run nightly rustfmt | Oliver Schneider | -25/+16 | |
| 2017-08-14 | Rustfmt | Oliver Schneider | -56/+69 | |
| 2017-05-03 | Run rustfmt | Oliver Schneider | -68/+59 | |
| 2017-05-01 | Fix two doc comments | Boris-Chengbiao Zhou | -2/+1 | |
| 2017-04-13 | needless_continue: Remove indentation of suggestion code. | Yati Sagade | -6/+5 | |
| As per a suggestion by Oliver on the PR thread, maintaining indentation in the suggested code is futile because of the changes in the compiler and the messiness of real-world code. rustfmt will do the indentation if required, so we don't need to do it. | ||||
| 2017-04-12 | Dogfood tests | Oliver Schneider | -7/+11 | |
| 2017-04-09 | needless_continue: Refactor to use stuff from utils, and move some stuff to ↵ | Yati Sagade | -135/+41 | |
| utils. I had my own implementation of what `trim_multiline()` seems to be doing, so I just started using `trim_multiline()`. Some other functions, like those block alignment, are general enough to be used elsewhere, so moved them to utils. | ||||
| 2017-04-08 | [needless_continue] Add comments explaining terminology used thoughout in ↵ | Yati Sagade | -61/+109 | |
| the code. | ||||
| 2017-04-08 | More dogfood test fixes. | Yati Sagade | -2/+2 | |
| 2017-04-08 | Fix lint warnings from dogfooding tests. | Yati Sagade | -4/+3 | |
| 2017-04-08 | Needless continue: This is a complete rewrite of this lint as an early-pass ↵ | Yati Sagade | -0/+468 | |
| lint. The previous version had troubles computing suggestions without macro expansions creeping in. This fixes it by using original_sp, which works on AST nodes. | ||||
