| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2019-12-28 | Add real suggestion to option_map_unwrap_or | Micha Ober | -113/+12 | |
| 2019-10-18 | Split out tests | Heinz N. Gies | -9/+1 | |
| 2019-10-15 | Change lint to be pedantic | James Wang | -24/+24 | |
| 2019-10-14 | new lints around `#[must_use]` fns | Andre Bogus | -24/+24 | |
| `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-03 | Try to fix .fixed | BO41 | -25/+31 | |
| 2019-08-29 | Dereference one less on search_is_some and make it auto-fixable | BO41 | -29/+36 | |
| 2019-08-20 | Remove feature gate for async_await | Lzu Tao | -21/+21 | |
| 2019-08-09 | fixed tests (again) and added a test that should actually cause a warning ↵ | Lukas Markeffsky | -21/+31 | |
| for new_ret_no_self | ||||
| 2019-08-09 | removed unused imports #2 | Lukas Markeffsky | -20/+20 | |
| 2019-08-09 | removed unused imports | Lukas Markeffsky | -20/+20 | |
| 2019-08-09 | upgrade test to rust 2018 | Lukas Markeffsky | -20/+20 | |
| 2019-08-09 | new_ret_no_self: walk associated types in impl Trait return types | Lukas Markeffsky | -20/+20 | |
| 2019-08-01 | UI Test Cleanup: No wrong_self_convention in methods.rs | Philipp Hansch | -41/+21 | |
| These cases are already covered in `tests/ui/wrong_self_convention.rs`. cc #2038 | ||||
| 2019-06-02 | Fix .map(..).unwrap_or_else(..) bad suggestion | Michael Wright | -9/+9 | |
| Closes #4144 | ||||
| 2019-05-01 | change |&x| to |x| in stderr file | airt | -1/+1 | |
| 2019-04-18 | Add run-rustfix for option_map_or_none lint | Philipp Hansch | -44/+20 | |
| 2019-04-11 | UI test cleanup: Extract iter_nth tests | Philipp Hansch | -54/+10 | |
| 2019-04-11 | UI test cleanup: Extract or_fun_call tests | Philipp Hansch | -83/+9 | |
| 2019-03-10 | Update tests | flip1995 | -47/+47 | |
| 2019-02-26 | Fix false negative | Wilco Kusee | -34/+42 | |
| 2019-02-26 | Only suggest map_or for copy types | Wilco Kusee | -33/+33 | |
| 2019-02-22 | rustfmt tests/ui/methods.rs | Michael Wright | -47/+49 | |
| 2019-02-22 | Add `#[rustfmt::skip]` to methods tests | Michael Wright | -39/+39 | |
| Many people run rustfmt automatically on save. Format-dependent tests should be marked with `#[rustfmt::skip]` to prevent accidental reformatting from this. As a bonus the rest of the code can the formatted. | ||||
| 2019-01-08 | Remove all copyright license headers | Philipp Hansch | -43/+43 | |
| Discussion previously happened in https://github.com/rust-lang/rust/pull/43498 | ||||
| 2019-01-02 | Use compiletest's aux-build header instead of include macro | Philipp Hansch | -43/+43 | |
| 2019-01-02 | Extract IteratorFalsePositives into option_helpers.rs | Philipp Hansch | -28/+28 | |
| This was previously duplicated in #3605 | ||||
| 2019-01-02 | UI test cleanup: Extract lint from methods.rs test | Philipp Hansch | -76/+44 | |
| 2018-12-30 | UI test cleanup: Extract iter_skip_next from methods.rs | Philipp Hansch | -28/+2 | |
| cc #2038 | ||||
| 2018-12-28 | Merge new_without_default_derive into new_without_default | Russell Greene | -50/+50 | |
| 2018-12-28 | Update *.stderr files | flip1995 | -286/+286 | |
| 2018-12-09 | update line numbers of tests | Matthias Krüger | -147/+147 | |
| 2018-11-02 | UI test cleanup: Extract expect_fun_call tests | Philipp Hansch | -81/+25 | |
| Note that the new stderr file does not include a `shadow-unrelated` error, because the new UI test file does not use `#![warn(clippy::all)]` | ||||
| 2018-10-27 | Don't expand macro in or_fun_call suggestion | Philipp Hansch | -1/+1 | |
| 2018-10-13 | Removed new_ret_no_self tests from method.rs | Josh Mcguigan | -10/+2 | |
| 2018-10-10 | Fix #2937 | Michael Wright | -27/+39 | |
| 2018-10-06 | Add license header to Rust files | Manish Goregaokar | -163/+163 | |
| 2018-08-29 | Adapt the *.stderr files of the ui-tests to the tool_lints | flip1995 | -15/+15 | |
| 2018-08-14 | Move shadow_unrelated to pedantic | Dale Wijnand | -1/+19 | |
| 2018-08-02 | Fix #2979 | Michael Wright | -24/+24 | |
| 2018-07-15 | Fix #2894 | Michael Wright | -93/+1 | |
| 2018-06-14 | Fix some existing test expectations | Daniel Wagner-Hall | -187/+187 | |
| 2018-06-05 | Extracting arguments to format to pass directly to panic when appropriate | Donald Robertson | -2/+2 | |
| 2018-06-04 | Adding handling and tests for custom type with implemented expect method | Donald Robertson | -32/+32 | |
| 2018-06-04 | Ensuring correct lint message is output for Option and Result type | Donald Robertson | -2/+2 | |
| 2018-06-04 | Warn if non-trivial work is done inside .expect | Donald Robertson | -25/+51 | |
| - added tests for common usages of format and as_str arguments to expect - added tests for usages of Option and Result types - given performance impact of passing non literal expressions to expect, added to perf group | ||||
| 2018-04-12 | Move unnecessary_fold UI tests to separate file | Philipp Hansch | -35/+3 | |
| 2018-02-21 | Stop unwanted newlines being applied on unwrap_or | bootandy | -18/+18 | |
| 2018-02-19 | Fix: point to correct problem part of code | bootandy | -18/+18 | |
| Fix span so it no longer contains the whole train-wreck of code and only points to the problem function (for the unwrap_or lint). https://github.com/rust-lang-nursery/rust-clippy/issues/2422 Update ui test methods - it had several cases where the error message span is now shorter | ||||
| 2018-01-22 | Fix unnecessary_fold bug | Phil Ellison | -2/+2 | |
| 2018-01-19 | Update error count | Oliver Schneider | -1/+1 | |
