| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2020-02-02 | Rustup to rust-lang/rust#68133 | Yuki Okushi | -1/+1 | |
| 2020-01-13 | Rustup to rust-lang/rust#68045 | 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-31 | Rustup to rust-lang/rust#67707 | Yuki Okushi | -1/+1 | |
| 2019-12-27 | Rustup to rust-lang/rust#66936 | Yuki Okushi | -5/+5 | |
| 2019-12-24 | do minor cleanups | Lzu Tao | -2/+0 | |
| * ToString and AsRef are in prelude, no need to import them | ||||
| 2019-11-13 | literal representation restructure 12 | Michael Wright | -0/+2 | |
| Export function for formatting literals and remove crate visibility from other items. | ||||
| 2019-11-08 | rustup https://github.com/rust-lang/rust/pull/65916 | Lzu Tao | -3/+3 | |
| 2019-10-18 | Fix suggestion for ranges | HMPerson1 | -3/+11 | |
| 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 | -2/+2 | |
| 2019-09-12 | Fix lint warnings | Michael Wright | -1/+1 | |
| 2019-08-19 | Remove in_macro_or_desugar | KRAAI, MATTHEW [VISUS] | -2/+2 | |
| 2019-07-06 | Fix breakage due to rust-lang/rust#61988 | Michael Wright | -1/+0 | |
| 2019-06-23 | Fix fallout from rust-lang/rust PR 60861. | Mazdak Farrokhzad | -2/+1 | |
| 2019-06-12 | Remove wrong lifetime from LintContext | Lzu Tao | -3/+3 | |
| 2019-06-09 | rustup https://github.com/rust-lang/rust/pull/61669/ | Matthias Krüger | -2/+2 | |
| 2019-05-24 | rustup https://github.com/rust-lang/rust/pull/60803/ | Matthias Krüger | -3/+1 | |
| 2019-05-11 | Rename in_macro to in_macro_or_desugar | Manish Goregaokar | -2/+2 | |
| 2019-05-10 | Remove some unnecessary If arms | Manish Goregaokar | -1/+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 | 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/+1 | |
| 2019-03-10 | Addressed points raised in review. | Alexander Regueiro | -12/+11 | |
| 2019-03-10 | Various cosmetic improvements. | Alexander Regueiro | -10/+10 | |
| 2019-02-19 | Document the new `Sugg` functions | flip1995 | -0/+3 | |
| 2019-02-19 | Implement Sugg::hir_with_macro_callsite | flip1995 | -33/+43 | |
| 2019-01-27 | rustup https://github.com/rust-lang/rust/pull/57907/ | Matthias Krüger | -3/+3 | |
| for file in `fd \.rs$` ; do sed -i s/span_suggestion_with_applicability/span_suggestion/g $file ; done for file in `fd \.rs$` ; do sed -i s/span_suggestion_short_with_applicability/span_suggestion_short/g $file ; done for file in `fd \.rs$` ; do sed -i s/span_suggestions_with_applicability/span_suggestions/g $file ; done | ||||
| 2019-01-22 | Added "make_return" and "blockify" convenience methods in Sugg and used them ↵ | Grzegorz Bartoszek | -0/+29 | |
| in "needless_bool". | ||||
| 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 | -15/+15 | |
| This is somewhat misleading, as those are actually external crates, and don't need a crate:: prefix. | ||||
| 2018-12-28 | Match on ast/hir::ExprKind::Err | flip1995 | -2/+4 | |
| 2018-12-17 | Changes lint sugg to bitwise and operator `&` | Lucas Lois | -0/+5 | |
| 2018-11-27 | Run rustfmt on clippy_lints | flip1995 | -133/+126 | |
| 2018-11-27 | Fix bugs and improve documentation | flip1995 | -2/+16 | |
| Some bugs and some documentation is unrelated to the Applicability change, but these bugs were serious and the documentation was kind of required to understand what's going on. | ||||
| 2018-11-27 | Introduce snippet_with_applicability and hir_with_applicability functions | flip1995 | -0/+9 | |
| 2018-10-30 | Rustup to rustc 1.31.0-nightly (fb2446ad5 2018-10-30) | Manish Goregaokar | -1/+1 | |
| 2018-10-08 | Fix cast_possible_truncation warnings | Devon Hollowood | -1/+2 | |
| 2018-10-06 | Add license header to Rust files | Manish Goregaokar | -0/+10 | |
| 2018-09-20 | Fix indents | Vitaly _Vi Shukela | -5/+5 | |
| 2018-09-20 | Supplement DiagnosticBuilderExt with Applicability | Vitaly _Vi Shukela | -9/+9 | |
| 2018-09-20 | Use span_suggestion_with_applicability instead of span_suggestion | Vitaly _Vi Shukela | -3/+19 | |
| 2018-09-15 | Reintroduce `extern crate` for non-Cargo dependencies. | Eduard-Mihai Burtescu | -14/+14 | |
| 2018-09-01 | Merge pull request #2977 from flip1995/tool_lints | Manish Goregaokar | -4/+2 | |
| Implement tool_lints | ||||
| 2018-08-29 | Adapt codebase to the tool_lints | flip1995 | -4/+2 | |
| 2018-08-29 | bring back sugg::range | Corey Farwell | -0/+10 | |
| 2018-08-28 | Make clippy_lints::{utils,consts} modules private, remove unused items. | Corey Farwell | -9/+0 | |
| 2018-08-23 | fix clippy breakage due to https://github.com/rust-lang/rust/pull/52602 | Matthias Krüger | -1/+1 | |
| 2018-08-19 | codemap -> source_map | Manish Goregaokar | -4/+4 | |
| https://github.com/rust-lang/rust/pull/52953 | ||||
