| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2020-01-27 | Rename `span_note_and_lint` to `span_lint_and_note` | Yuki Okushi | -4/+4 | |
| 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 | -6/+6 | |
| 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 | -19/+20 | |
| 2019-12-04 | Rustup to rust-lang/rust#66878 | Matthias Krüger | -1/+2 | |
| 2019-11-20 | Implement if_same_cond_fn lint | Igor Aleksanov | -1/+77 | |
| Run ./util/dev Revert changelog entry Rename lint to same_functions_in_if_condition and add a doc example Add testcases with different arg in fn invocation | ||||
| 2019-09-27 | Rustup to rust-lang/rust#64813 | flip1995 | -3/+3 | |
| 2019-09-26 | Remove unused import | Lzu Tao | -1/+0 | |
| 2019-09-26 | Auto merge of #4569 - james9909:add-comparison-chain, r=oli-obk | bors | -43/+4 | |
| Add a new lint for comparison chains changelog: Adds a new lint: `comparison_chain`. `comparison_chain` lints all `if` conditional chains where all the conditions are binary comparisons on the same two operands and will suggest a rewrite with `match`. Closes #4531. | ||||
| 2019-09-25 | arm.pats -> arm.pat | Manish Goregaokar | -22/+17 | |
| 2019-09-24 | Update refactor according to code review | James Wang | -9/+4 | |
| 2019-09-24 | Add a new lint for comparison chains | James Wang | -45/+11 | |
| 2019-09-05 | Rustup "Minimize uses of `LocalInternedString`" | Lzu Tao | -10/+6 | |
| 2019-08-19 | Remove in_macro_or_desugar | KRAAI, MATTHEW [VISUS] | -4/+2 | |
| 2019-08-18 | Fix breakage due to rust-lang/rust#61708 | Michael Wright | -4/+4 | |
| 2019-08-16 | Rustup "Remove `Spanned` from `{ast,hir}::FieldPat`" | Lzu Tao | -1/+1 | |
| 2019-07-02 | Fix `match_same_arms` false negative | Michael Wright | -3/+17 | |
| Closes #4244 | ||||
| 2019-05-21 | Add the common case search | Vincent Dal Maso | -74/+52 | |
| Changes: - Refactor the common case search into a function. - Fix the useless Option around the vec in the search_same_list. | ||||
| 2019-05-16 | Fix match_same_arms to fail late | Vincent Dal Maso | -37/+74 | |
| Changes: - Add a function search_same_list which return a list of matched expressions - Change the match_same_arms implementation behaviour. It will lint each same arms found. | ||||
| 2019-05-11 | Rename in_macro to in_macro_or_desugar | Manish Goregaokar | -2/+2 | |
| 2019-05-10 | More uses of higher::if_block | Manish Goregaokar | -9/+7 | |
| 2019-04-17 | Use lint pass macros | Matthew Kraai | -13/+2 | |
| Fixes #3917. | ||||
| 2019-03-10 | Various cosmetic improvements. | Alexander Regueiro | -3/+3 | |
| 2019-03-05 | fix or ignore failing doc tests | Andy Russell | -3/+3 | |
| 2019-03-05 | move lint documentation into macro invocations | Andy Russell | -75/+75 | |
| 2019-02-24 | HirIdify some lints | ljedrz | -1/+1 | |
| 2019-02-03 | Fix breakage due to rust-lang/rust#58079 | Michael Wright | -1/+1 | |
| The rustc change added HirId to a few nodes. As I understand it, the plan is to remove the NodeId from these nodes eventually. Where the NodeId was not being matched, I used `..` to try and avoid further breakage. Where it was, I used `_` to make the fix easier when NodeId is removed. | ||||
| 2019-01-27 | rustup https://github.com/rust-lang/rust/pull/57907/ | Matthias Krüger | -1/+1 | |
| 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 | -6/+6 | |
| 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 | -21/+31 | |
| 2018-11-22 | rust-lang-nursery/rust-clippy => rust-lang/rust-clippy | Matthias Krüger | -1/+1 | |
| 2018-10-06 | Add license header to Rust files | Manish Goregaokar | -0/+10 | |
| 2018-09-26 | rustup | Matthias Krüger | -4/+4 | |
| fix breakage by https://github.com/rust-lang/rust/pull/53824 use smallvec crate instead of rustcs type alias. | ||||
| 2018-09-20 | Use span_suggestion_with_applicability instead of span_suggestion | Vitaly _Vi Shukela | -1/+2 | |
| 2018-09-15 | Reintroduce `extern crate` for non-Cargo dependencies. | Eduard-Mihai Burtescu | -7/+7 | |
| 2018-09-12 | Change Hash{Map, Set} to FxHash{Map, Set} | flip1995 | -5/+9 | |
| 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-14 | Rustup to rustc 1.30.0-nightly (23f09bbed 2018-08-14) | Manish Goregaokar | -4/+4 | |
| 2018-07-23 | Rustup | Oliver Schneider | -3/+3 | |
| 2018-07-19 | Remove import of rustc | Manish Goregaokar | -0/+1 | |
| 2018-07-16 | ExprKind | csmoe | -6/+6 | |
| 2018-06-29 | Rustup | Mateusz Mikuła | -2/+2 | |
| 2018-06-25 | Enable rust_2018_idioms warning | Mateusz Mikuła | -3/+3 | |
| 2018-05-30 | Run rustfix | Mateusz Mikuła | -2/+2 | |
