| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2019-11-25 | fixing a typo | Andre Bogus | -1/+1 | |
| 2019-11-25 | Rustup to rust-lang/rust#64856 | flip1995 | -19/+24 | |
| 2019-11-25 | Rustup to rust-lang/rust#66671 | flip1995 | -3/+3 | |
| 2019-11-23 | Auto merge of #4840 - flip1995:rollup-jqk3a3i, r=flip1995 | bors | -1/+1 | |
| Rollup of 5 pull requests Successful merges: - #4730 (Fix check_infinite_loop (while_immutable_condition) by checking for break or return inside loop body) - #4766 (Fix false positive in derive_hash_xor_eq) - #4811 (Literal Representation Restructure) - #4820 (doc: fix the comment above the lint function) - #4830 (use more efficient code to generate repeated string) Failed merges: r? @ghost changelog: none | ||||
| 2019-11-23 | Rollup merge of #4820 - guanqun:comment-fix, r=flip1995 | Philipp Krones | -1/+1 | |
| doc: fix the comment above the lint function it's a simple comment fix. --- changelog: none | ||||
| 2019-11-15 | New lint: zst_offset | Andre Bogus | -0/+33 | |
| 2019-11-16 | doc: fix the comment above the lint function | Guanqun Lu | -1/+1 | |
| 2019-11-11 | MutImmutable -> Immutable, MutMutable -> Mutable, CaptureClause -> CaptureBy | Manish Goregaokar | -6/+6 | |
| 2019-11-07 | Deprecate `into_iter_on_array` lint | flip1995 | -41/+4 | |
| This lint was uplifted/reimplemented by rustc. Rustup to rust-lang/rust#66017 | ||||
| 2019-11-06 | rustup rust-lang/rust#65776 | Lzu Tao | -3/+3 | |
| 2019-10-19 | rustup https://github.com/rust-lang/rust/pull/65535 | Lzu Tao | -1/+1 | |
| 2019-10-18 | Split out tests | Heinz N. Gies | -2/+4 | |
| 2019-10-18 | Add expect | Heinz N. Gies | -1/+86 | |
| Co-Authored-By: Philipp Krones <hello@philkrones.com> | ||||
| 2019-10-17 | Update help text in `inefficient_to_string` | Michael Zhang | -1/+1 | |
| Co-Authored-By: Manish Goregaokar <manishsmail@gmail.com> | ||||
| 2019-10-16 | Add `inefficient_to_string` lint | HMPerson1 | -0/+83 | |
| 2019-10-14 | new lints around `#[must_use]` fns | Andre Bogus | -0/+2 | |
| `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-10-08 | Auto merge of #4611 - rust-lang:doc-visibility, r=flip1995 | bors | -1/+1 | |
| account for doc visibility This fixes #4608. Also I noticed that the lint failed to look at trait and impl items. There's a small bit of fallout in the code, too, but not enough to warrant its own commit. changelog: check docs of trait items and impl items, also make `missing_safety_doc` account for visibility | ||||
| 2019-10-05 | Run util/dev fmt | flip1995 | -5/+5 | |
| 2019-10-05 | Get rid of rvalue_promotable_map method call | flip1995 | -12/+3 | |
| 2019-10-02 | account for doc visibility | Andre Bogus | -1/+1 | |
| 2019-09-27 | Rustup to rust-lang/rust#64813 | flip1995 | -56/+56 | |
| 2019-09-26 | Rustup https://github.com/rust-lang/rust/pull/64513 | Lzu Tao | -20/+20 | |
| 2019-09-11 | run rustfmt | Matthias Krüger | -5/+5 | |
| 2019-09-09 | Auto merge of #4527 - rust-lang:more-vec-diag-items, r=oli-obk | bors | -1/+1 | |
| Changed more `Vec` paths to diagnostic_items In #4519, I missed a few instances of path matching for `Vec`, so here they are. r? @oli-obk changelog: none | ||||
| 2019-09-09 | Auto merge of #4522 - mikerite:fix-4514, r=phansch | bors | -25/+30 | |
| Fix `or_fun_call` bad suggestion Closes #4514 changelog: Fix `or_fun_call` bad suggestion | ||||
| 2019-09-09 | Changed more Vec paths to diagnostic_items | Andre Bogus | -1/+1 | |
| 2019-09-09 | Use diagnostic item for | Andre Bogus | -10/+9 | |
| 2019-09-08 | Fix `or_fun_call` bad suggestion | Michael Wright | -25/+30 | |
| Closes #4514 | ||||
| 2019-09-04 | Refactor option handling | Jeremy Stucki | -8/+5 | |
| 2019-09-04 | Auto merge of #4498 - sinkuu:checked_arithmetic_unwrap, r=flip1995 | bors | -0/+207 | |
| Add manual_saturating_arithmetic lint changelog: add `manual_saturating_arithmetic` lint Fixes #1557. This lint detects manual saturating arithmetics like `x.checked_add(10u32).unwrap_or(u32::max_value())` and suggests replacing with `x.saturating_add(10u32)`. | ||||
| 2019-09-04 | Hide variables in doc-test | Shotaro Yamada | -8/+8 | |
| 2019-09-04 | Fix doctest and renaming src | Shotaro Yamada | -6/+8 | |
| 2019-09-04 | Add manual_saturating_arithmetic lint | Shotaro Yamada | -0/+205 | |
| 2019-09-04 | Auto merge of #4454 - BO41:search_is_some, r=flip1995 | bors | -34/+50 | |
| Dereference one less on search_is_some and make it auto-fixable Fixes #4453 changelog: none | ||||
| 2019-09-03 | Try to fix .fixed | BO41 | -15/+16 | |
| 2019-09-03 | lint against `MaybeUninit::uninit().assume_init()` | Andre Bogus | -0/+65 | |
| 2019-08-30 | Rustup to rust-lang/rust#60966 | flip1995 | -2/+2 | |
| 2019-08-29 | Use the spans returned by utils::method_calls | flip1995 | -22/+28 | |
| 2019-08-29 | Dereference one less on search_is_some and make it auto-fixable | BO41 | -8/+17 | |
| 2019-08-28 | Replace `Arg` with `Param` | Yuki Okushi | -5/+5 | |
| 2019-08-26 | Auto merge of #4430 - lzutao:defid_trait_alias, r=flip1995 | bors | -1/+4 | |
| Account for trait alias when looking for defid I hit the crash on the `expect` call when running clippy on rustc libcore. Hopefully this will fix it. changelog: none | ||||
| 2019-08-26 | Auto merge of #4436 - BO41:written_as, r=phansch | bors | -1/+20 | |
| Add some "could be written as" examples fixes #4405 changelog: none | ||||
| 2019-08-25 | Account for trait alias when looking for defid | Lzu Tao | -1/+4 | |
| 2019-08-24 | Fix lint doc | BO41 | -1/+1 | |
| 2019-08-23 | Refactor some minor things | Jeremy Stucki | -16/+9 | |
| 2019-08-23 | Use more if-chains | Jeremy Stucki | -36/+42 | |
| 2019-08-23 | Refactor 'lint_or_fun_call' | Jeremy Stucki | -35/+26 | |
| 2019-08-23 | Refactor 'check_unwrap_or_default' | Jeremy Stucki | -33/+26 | |
| 2019-08-23 | Refactor 'check_impl_item' | Jeremy Stucki | -49/+48 | |
| 2019-08-22 | Add examples to some complexity lints | BO41 | -1/+16 | |
