| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2020-02-03 | improve 'iter_nth_zero' documentation | Areredify | -2/+3 | |
| 2020-01-30 | Un-ignore most code blocks to render correctly on website, correct mistakes | Ludwig Stecher | -21/+47 | |
| 2020-01-30 | Fix code formatting for more lints | Ludwig Stecher | -9/+9 | |
| 2020-01-30 | Fix syntax highlighting of code fence | Ludwig Stecher | -1/+1 | |
| The documentation for RESULT_EXPECT_USED includes this code: let res: Result<usize, ()> = Ok(1); res?; # Ok::<(), ()>(()) Because the code fence didn't start with `rust`, the code wasn't highlighted and the line starting with `#` was displayed on the website. This is now fixed. | ||||
| 2020-01-30 | Reformat code. | xiongmao86 | -4/+4 | |
| 2020-01-27 | Rename `span_note_and_lint` to `span_lint_and_note` | Yuki Okushi | -5/+5 | |
| 2020-01-27 | Rename `span_help_and_lint` to `span_lint_and_help` | Yuki Okushi | -14/+14 | |
| 2020-01-26 | Apply review comments | Yuki Okushi | -13/+13 | |
| 2020-01-24 | Clean up `methods/mod.rs` | Yuki Okushi | -52/+52 | |
| 2020-01-23 | add `option_as_ref_deref` lint | Areredify | -1/+102 | |
| 2020-01-20 | Auto merge of #5067 - JohnTitor:lint-skip-while-next, r=flip1995 | bors | -0/+43 | |
| Add `skip_while_next` lint Fixes #4036 changelog: Add `skip_while_next` lint | ||||
| 2020-01-20 | Apply review comment | Yuki Okushi | -3/+7 | |
| 2020-01-20 | Improve `suspicious_map`documentation | Yuki Okushi | -2/+3 | |
| 2020-01-20 | Add `skip_while_next` lint | Yuki Okushi | -0/+39 | |
| 2020-01-18 | Rustup to rust-lang/rust#68204 | Yuki Okushi | -1/+1 | |
| 2020-01-13 | Auto merge of #4543 - xiongmao86:issue4503, r=flip1995 | bors | -0/+68 | |
| Fix issue4503 Fixes #4503. changelog: Add a lint checking user are using FileType.is_file() method and suggest using !FileType.is_dir(). - [x] Followed [lint naming conventions][lint_naming] - [x] Added passing UI tests (including committed `.stderr` file) - [x] `cargo test` passes locally - [x] Executed `./util/dev update_lints` - [x] Added lint documentation - [x] Run `./util/dev fmt` | ||||
| 2020-01-13 | Rustup to rust-lang/rust#68045 | Yuki Okushi | -5/+6 | |
| 2020-01-12 | Update lints again. | xiongmao86 | -1/+1 | |
| 2020-01-12 | Fix grammar error. | xiongmao86 | -4/+4 | |
| 2020-01-12 | Update clippy_lints/src/methods/mod.rs | Rui | -1/+1 | |
| Co-Authored-By: Philipp Krones <hello@philkrones.com> | ||||
| 2020-01-12 | Change lint message. | xiongmao86 | -6/+15 | |
| 2020-01-12 | Fix documents and messages. | Rui | -4/+4 | |
| Update clippy_lints/src/methods/mod.rs | ||||
| 2020-01-12 | Extend spans to include !. | xiongmao86 | -1/+1 | |
| 2020-01-12 | Add lint logic. | xiongmao86 | -0/+24 | |
| 2020-01-12 | Declare lint. | xiongmao86 | -0/+35 | |
| 2020-01-11 | Rustup to rust-lang/rust#67806 | Yuki Okushi | -3/+2 | |
| 2020-01-09 | Rustup to rust-lang/rust#67979 | Yuki Okushi | -8/+21 | |
| 2020-01-07 | Normalize lint messages | Yuki Okushi | -13/+13 | |
| 2020-01-07 | Rustup to rust-lang/rust#67886 | Yuki Okushi | -16/+16 | |
| 2020-01-04 | Add lint for iter.nth(0) | Brad Sherman | -4/+55 | |
| - Encourage iter.next() rather than iter.nth(0), which is less readable | ||||
| 2020-01-04 | Rustup to https://github.com/rust-lang/rust/pull/67853 | Philipp Hansch | -3/+3 | |
| Specifically caused by https://github.com/rust-lang/rust/pull/67786 | ||||
| 2020-01-04 | Remove use of `try!` from documentation | Yuki Okushi | -2/+2 | |
| 2019-12-31 | Rustup to rust-lang/rust#67707 | Yuki Okushi | -1/+1 | |
| 2019-12-30 | Auto merge of #4634 - m-ober:feature/2320-map-or, r=llogiq | bors | -25/+33 | |
| Add real suggestion to option_map_unwrap_or changelog: Add real suggestion to `option_map_unwrap_or` Fixes #2320 | ||||
| 2019-12-30 | Rustup to rust-lang/rust#66942 | Yuki Okushi | -6/+6 | |
| 2019-12-28 | Add real suggestion to option_map_unwrap_or | Micha Ober | -25/+33 | |
| 2019-12-27 | Rustup to rust-lang/rust#66936 | Yuki Okushi | -84/+120 | |
| 2019-12-22 | Add <'_> where necessary | flip1995 | -1/+1 | |
| 2019-12-21 | rustup "Merge `ast::Mutability` and `mir::Mutability`" | Lzu Tao | -8/+6 | |
| 2019-12-20 | Auto merge of #4920 - lily-commure:fix-unnecessary-filter-map-docs, r=phansch | bors | -2/+2 | |
| Fix documentation example for unnecessary_filter_map. Fixes #4919. changelog: none | ||||
| 2019-12-20 | Auto merge of #4913 - mikerite:step-by-zero-20191218, r=phansch | bors | -0/+35 | |
| Move `iterator_step_by_zero` and correct the documentation Move `iterator_step_by_zero` and correct the documentation. changelog: Corrected `iterator_step_by_zero` documentation | ||||
| 2019-12-19 | Fix documentation example for unnecessary_filter_map. | Lily Chung | -2/+2 | |
| 2019-12-19 | Fix `expect_fun_call` false negative on references | Michael Wright | -1/+1 | |
| Closes #4912 | ||||
| 2019-12-19 | Fix `iterator_step_by_zero` description in declaration | mikerite | -1/+1 | |
| Co-Authored-By: Phil Hansch <dev@phansch.net> | ||||
| 2019-12-18 | Correct `iterator_step_by_zero` documentation | Michael Wright | -7/+6 | |
| 2019-12-18 | Update iterator_step_by_zero | Michael Wright | -0/+36 | |
| Move `iterator_step_by_zero` into `methods` since it applies to all iterators and not just ranges. Simplify the code while doing so. | ||||
| 2019-12-04 | Rustup to rust-lang/rust#66878 | Matthias Krüger | -1/+2 | |
| 2019-11-28 | Rollup merge of #4847 - rust-lang:offest, r=phansch | Phil Hansch | -1/+1 | |
| fixing a typo changelog: none | ||||
| 2019-11-28 | make use of Result::map_or | Lzu Tao | -7/+5 | |
| 2019-11-27 | Add BorrowKind::Ref | Manish Goregaokar | -3/+3 | |
