| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2020-02-03 | Use `checked_sub` to avoid index out of bounds | Yuki Okushi | -3/+11 | |
| 2020-01-27 | Rename `span_help_and_lint` to `span_lint_and_help` | Yuki Okushi | -3/+3 | |
| 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 | |
| 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-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-11-07 | Rustup to rust-lang/rust#65884 | flip1995 | -4/+4 | |
| 2019-10-15 | Add a new lint for unused self | James Wang | -2/+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-09-27 | Rustup to rust-lang/rust#64813 | flip1995 | -24/+24 | |
| 2019-09-25 | redundant_closure_call: split tests into fixable | Manish Goregaokar | -8/+6 | |
| 2019-09-18 | Add note about refactoring | mikerite | -0/+4 | |
| Co-Authored-By: Philipp Krones <hello@philkrones.com> | ||||
| 2019-09-13 | Apply review suggestions | Michael Wright | -11/+3 | |
| Fix grammar errors and use `Pat::is_rest` instead of own function. | ||||
| 2019-09-12 | Fix lint warnings | Michael Wright | -55/+60 | |
| 2019-09-12 | Add `unneeded-wildcard-pattern` lint | Michael Wright | -1/+92 | |
| 2019-09-09 | Fix regression in case of proc-macro attribute expansion | Lzu Tao | -8/+6 | |
| 2019-09-05 | Make it auto fixable lint | Yuki Okushi | -1/+4 | |
| 2019-09-05 | Fix `redundant_pattern` false positive | Yuki Okushi | -1/+38 | |
| 2019-09-02 | Fix index out of bound in case of empty snippet | Lzu Tao | -1/+2 | |
| 2019-08-26 | Cleaner code for unsep literals | Lzu Tao | -73/+73 | |
| 2019-08-19 | Requested changes | Jamie McClymont | -19/+11 | |
| 2019-08-19 | Add autofixable suggestion for unseparated integer literal suffices | Jamie McClymont | -6/+30 | |
| 2019-08-16 | Rustup "Remove `Spanned` from `{ast,hir}::FieldPat`" | Lzu Tao | -3/+3 | |
| 2019-08-02 | Doctests: Fix all complexity lint docs | Philipp Hansch | -1/+1 | |
| cc #4319 | ||||
| 2019-08-01 | Update formatting | Michael Wright | -1/+1 | |
| 2019-04-23 | Rustup to rustc 1.36.0-nightly (fe0a415b4 2019-04-23) | Manish Goregaokar | -1/+1 | |
| 2019-04-17 | Use lint pass macros | Matthew Kraai | -24/+13 | |
| Fixes #3917. | ||||
| 2019-03-10 | Various cosmetic improvements. | Alexander Regueiro | -1/+1 | |
| 2019-03-05 | fix or ignore failing doc tests | Andy Russell | -2/+3 | |
| 2019-03-05 | move lint documentation into macro invocations | Andy Russell | -114/+114 | |
| 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-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 | -7/+7 | |
| This is somewhat misleading, as those are actually external crates, and don't need a crate:: prefix. | ||||
| 2018-12-14 | rustup rust-lang/rust#52994 | flip1995 | -2/+2 | |
| s/trim_left/trim_start/ s/trim_right/trim_end/ | ||||
| 2018-11-27 | Run rustfmt on clippy_lints | flip1995 | -39/+45 | |
| 2018-11-15 | rustup https://github.com/rust-lang/rust/pull/55852/ | Matthias Krüger | -1/+1 | |
| 2018-11-14 | Fix `use_self` violation | Michael Wright | -2/+2 | |
| 2018-11-14 | Fix wrong suggestion for `redundant_closure_call` | Michael Wright | -16/+45 | |
| Fixes #1684 | ||||
| 2018-10-06 | Add license header to Rust files | Manish Goregaokar | -0/+10 | |
| 2018-09-20 | Fill in Applicability from review comments by @flip1995 | Vitaly _Vi Shukela | -3/+3 | |
| 2018-09-20 | Fix indents | Vitaly _Vi Shukela | -5/+5 | |
| 2018-09-20 | Use span_suggestion_with_applicability instead of span_suggestion | Vitaly _Vi Shukela | -3/+11 | |
| 2018-09-15 | Reintroduce `extern crate` for non-Cargo dependencies. | Eduard-Mihai Burtescu | -6/+6 | |
| 2018-09-12 | Change Hash{Map, Set} to FxHash{Map, Set} | flip1995 | -2/+2 | |
| 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 | -2/+2 | |
| https://github.com/rust-lang/rust/pull/52953 | ||||
| 2018-07-24 | Inline utils::in_external_macro | Dale Wijnand | -2/+2 | |
