| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2019-03-26 | Hacky rustup | Oliver Scherer | -96/+55 | |
| 2019-03-23 | Change explicit_counter_loop's message to add parentheses if necessary | rail | -3/+18 | |
| 2019-03-23 | Change explicit_counter_loop's message to reflect original variable name | rail | -4/+4 | |
| 2019-03-19 | cargo fmt | Philipp Hansch | -14/+12 | |
| 2019-03-19 | Add rustfix tests for mistyped_literal_suffix lint | Philipp Hansch | -92/+126 | |
| This moves all `mistyped_literal_suffix` tests to their own file and enables rustfix tests for them. cc #3603, #2038 Based on #3887 | ||||
| 2019-03-19 | Move some `unreadable_literal` ui tests to correct file | Philipp Hansch | -48/+52 | |
| The moved tests were part of `tests/ui/literals.rs` before. Now they are placed in `tests/ui/unreadable_literal.rs`, which now also runs `rustfix` on these 4 extra let statements. | ||||
| 2019-03-15 | Auto merge of #3886 - phansch:rustfix_useless_asref, r=flip1995 | bors | -12/+152 | |
| Enable rustfix for `useless_asref` lint tests cc #3630 | ||||
| 2019-03-15 | Enable rustfix for `useless_asref` lint tests | Philipp Hansch | -12/+152 | |
| 2019-03-15 | Auto merge of #3883 - daxpedda:missing_docs_in_private_items, r=phansch | bors | -0/+20 | |
| Add `doc(include = ...)` detection to `missing_docs_in_private_items` The whole `missing documentation in crate` part doesn't have any tests. If I should add test cases tell me. | ||||
| 2019-03-14 | Another test for missing crate documentation. | daxpedda | -0/+15 | |
| 2019-03-14 | Add a test for `doc(include)` | daxpedda | -0/+5 | |
| Tiny code improvement. | ||||
| 2019-03-14 | Auto merge of #3879 - phansch:rustfix_string_lit_as_bytes, r=flip1995 | bors | -36/+61 | |
| Run rustfix for string_lit_as_bytes tests This moves the `string_lit_as_bytes` tests into a new file and enables rustfix tests for them. cc #3603, #2038 | ||||
| 2019-03-14 | Auto merge of #3877 - rink1969:3842, r=flip1995 | bors | -134/+190 | |
| casting integer literal to float is unnecessary fix issue https://github.com/rust-lang/rust-clippy/issues/3842 | ||||
| 2019-03-14 | casting integer literal to float is unnecessary | rink1969 | -134/+190 | |
| 2019-03-14 | UI test cleanup: Extract manual_memcpy tests | Philipp Hansch | -182/+186 | |
| 2019-03-14 | Run rustfix for string_lit_as_bytes tests | Philipp Hansch | -36/+61 | |
| This moves the `string_lit_as_bytes` tests into a new file and enables rustfix tests for them. | ||||
| 2019-03-12 | Auto merge of #3869 - taiki-e:use_self, r=flip1995 | bors | -4/+36 | |
| Fix `use_self` false positive on nested functions Related to https://github.com/rust-lang/rust-clippy/pull/3640 The current `use_self` warns the following code. ```rust #![warn(clippy::use_self)] struct Foo {} impl Foo { fn bar() { fn baz() -> Foo { //^ warning: unnecessary structure name repetition Foo {} //^ warning: unnecessary structure name repetition } } } ``` | ||||
| 2019-03-12 | Auto merge of #3794 - mikerite:fix-3739, r=phansch | bors | -1/+27 | |
| Fix `boxed_local` suggestion Don't warn about an argument that is moved into a closure. ExprUseVisitor doesn't walk into nested bodies so use a new visitor that collects the variables that are moved into closures. Fixes #3739 | ||||
| 2019-03-12 | Auto merge of #3871 - taiki-e:needless_continue, r=phansch | bors | -4/+110 | |
| 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 | Merge branch 'master' into fix-3739 | Michael Wright | -481/+909 | |
| 2019-03-12 | Fix `needless_continue` false positive | Taiki Endo | -4/+110 | |
| 2019-03-11 | Fix `use_self` false positive on nested functions | Taiki Endo | -4/+36 | |
| 2019-03-11 | Filter out proc_macro and proc_macro_attribute | Taiki Endo | -0/+10 | |
| 2019-03-10 | Run rustfmt | flip1995 | -1/+0 | |
| 2019-03-10 | Update tests | flip1995 | -114/+108 | |
| 2019-03-10 | Reblessed test outputs. | Alexander Regueiro | -3/+3 | |
| 2019-03-10 | Addressed points raised in review. | Alexander Regueiro | -6/+7 | |
| 2019-03-10 | Various cosmetic improvements. | Alexander Regueiro | -145/+163 | |
| 2019-03-09 | Move get_unwrap to restriction | Manish Goregaokar | -14/+20 | |
| fixes #3862 | ||||
| 2019-03-07 | fix missing a semicolon | rchaser53 | -6/+33 | |
| 2019-03-07 | Enable rustfix on `unused_unit` tests | Michael Wright | -11/+58 | |
| 2019-03-07 | Add `[rustfmt::skip]` to `unused_unit` test | Michael Wright | -7/+9 | |
| 2019-03-07 | Add `[rustfmt::skip]` to `doc_markdown` tests | Michael Wright | -30/+32 | |
| 2019-03-06 | Renamed: Cyclomatic Complexity -> Cognitive Complexity | Félix Fischer | -85/+122 | |
| * Ran automatic naming update * Formalized rename of `cyclomatic_complexity` to `cognitive_complexity` ** Added the rename to `lib.rs` ** Added rename test * Added warning for deprecated key `cyclomatic_complexity_threshold` and tests for it * Added deprecation status for Clippy's builtin attribute * Updated tests for new builtin attribute renaming | ||||
| 2019-03-06 | Ensure `expect_fun_call` bad suggestion is fixed | Michael Wright | -1/+13 | |
| Closes #3839 | ||||
| 2019-03-05 | Fix missing_const_for_fn for impl trait methods | Philipp Hansch | -0/+9 | |
| 2019-03-04 | Don't trigger missing_const_for_fn in external macros | Philipp Hansch | -0/+4 | |
| As reported in #3841. Only fixes the part where it triggers on the `derive`. | ||||
| 2019-02-28 | Add test for unknown Clippy attributes | flip1995 | -0/+11 | |
| 2019-02-28 | Add `rustfmt::skip` to `double_parens` tests | Michael Wright | -6/+9 | |
| 2019-02-27 | Auto merge of #3666 - detrumi:map-or-on-non-copy, r=flip1995 | bors | -34/+49 | |
| Only suggest map_or for copy types Fixes #2686 | ||||
| 2019-02-27 | Add `rustfmt::skip` to outer attr format tests | Michael Wright | -6/+9 | |
| 2019-02-26 | Auto merge of #3821 - g-bartoszek:redundant_closure-different-borrow-levels, ↵ | bors | -0/+8 | |
| r=oli-obk do not trigger redundant_closure when there is a difference in borrow… … level between closure parameter and "self", fixes #3802 | ||||
| 2019-02-26 | Fix false negative | Wilco Kusee | -34/+42 | |
| 2019-02-26 | Attempt to fix false negative | Wilco Kusee | -1/+5 | |
| 2019-02-26 | Only suggest map_or for copy types | Wilco Kusee | -33/+36 | |
| 2019-02-26 | Auto merge of #3817 - rust-lang:fix-bool_comparison-on-non-bool, r=oli-obk | bors | -0/+36 | |
| Fix `bool_comparison` with non-`bool` expressions Fixes #3703. It just moves around the type check that was already there for some comparison to all of them, because if one type isn't `bool`, none of those comparison can be simplified. | ||||
| 2019-02-26 | do not trigger redundant_closure when there is a difference in borrow level ↵ | Grzegorz | -0/+8 | |
| between closure parameter and "self" | ||||
| 2019-02-26 | Add [rustfmt::skip] to formatting lint tests | Michael Wright | -14/+17 | |
| 2019-02-25 | Fix `bool_comparison` with non-`bool` expressions | mcarton | -0/+36 | |
| 2019-02-25 | Auto merge of #3808 - mikerite:useless-format-suggestions, r=oli-obk | bors | -34/+80 | |
| Fix `useless_format` suggestions | ||||
