| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2020-01-27 | Rename `span_help_and_lint` to `span_lint_and_help` | Yuki Okushi | -3/+3 | |
| 2020-01-24 | don't fire empty_loop in no_std crates | Mikhail Babenko | -4/+4 | |
| 2020-01-13 | Extract visitor to utils | ThibsG | -45/+15 | |
| 2020-01-13 | Rustup to rust-lang/rust#68045 | Yuki Okushi | -1/+2 | |
| 2020-01-11 | Rustup to rust-lang/rust#67806 | Yuki Okushi | -3/+2 | |
| 2020-01-09 | Rustup to rust-lang/rust#67979 | Yuki Okushi | -10/+29 | |
| 2020-01-07 | Normalize lint messages | Yuki Okushi | -1/+1 | |
| 2020-01-07 | Rustup to rust-lang/rust#67886 | Yuki Okushi | -3/+3 | |
| 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 | ||||
| 2020-01-01 | Fix bad `explicit_into_iter_loop` suggestion | Michael Wright | -16/+15 | |
| Fixes #4958 | ||||
| 2019-12-31 | Rustup to rust-lang/rust#67707 | Yuki Okushi | -1/+1 | |
| 2019-12-27 | Rustup to rust-lang/rust#66936 | Yuki Okushi | -78/+78 | |
| 2019-12-24 | rustup "Add span information to `ExprKind::Assign`" | Lzu Tao | -6/+6 | |
| 2019-12-21 | rustup "Merge `ast::Mutability` and `mir::Mutability`" | Lzu Tao | -10/+10 | |
| 2019-12-04 | Rustup to rust-lang/rust#66878 | Matthias Krüger | -1/+2 | |
| 2019-11-29 | Use infer_ctxt | flip1995 | -9/+4 | |
| 2019-11-28 | Fix categorizations | Manish Goregaokar | -2/+2 | |
| 2019-11-28 | Fix arguments on ExprUseVisitor::new | Manish Goregaokar | -2/+0 | |
| 2019-11-28 | euv moved from middle to typeck | Manish Goregaokar | -3/+1 | |
| 2019-11-28 | cmt_ -> Place | Manish Goregaokar | -4/+4 | |
| 2019-11-27 | More borrowkind fixes | Manish Goregaokar | -1/+1 | |
| 2019-11-27 | Add BorrowKind::Ref | Manish Goregaokar | -6/+6 | |
| 2019-11-25 | Run rustfmt | flip1995 | -3/+7 | |
| 2019-11-25 | Rustup to rust-lang/rust#66671 | flip1995 | -6/+6 | |
| 2019-11-23 | Rollup merge of #4730 - yerke:fix-check_infinite_loop, r=flip1995 | Philipp Krones | -3/+43 | |
| Fix check_infinite_loop (while_immutable_condition) by checking for break or return inside loop body changelog: Fix check_infinite_loop (while_immutable_condition) by checking for break or return inside loop body fixes #4648 | ||||
| 2019-11-22 | fix check_infinite_loop by checking for break or return inside loop body | Yerkebulan Tulibergenov | -3/+43 | |
| 2019-11-22 | Rustup to rust-lang/rust#66515 | flip1995 | -1/+1 | |
| Fixes #4835 | ||||
| 2019-11-11 | Auto merge of #4803 - tomprogrammer:issue-4732, r=phansch | bors | -1/+2 | |
| Fix false positive in explicit_counter_loop lint When the counter was used in a closure after the loop the lint didn't detect the usage of the counter correctly. changelog: Fix false positive in `explicit_counter_loop` Fixes #4732 | ||||
| 2019-11-11 | MutImmutable -> Immutable, MutMutable -> Mutable, CaptureClause -> CaptureBy | Manish Goregaokar | -10/+12 | |
| 2019-11-11 | Fix false positive in explicit_counter_loop lint | Thomas Bahn | -1/+2 | |
| When the counter was used in a closure after the loop the lint didn't detect the usage of the counter correctly. | ||||
| 2019-11-06 | Fix ICE #4775 | flip1995 | -1/+7 | |
| 2019-10-18 | Fix suggestion span in `explicit_counter_loop` | HMPerson1 | -1/+10 | |
| 2019-10-18 | Suggest calling `iter` if needed in `explicit_counter_loop` | HMPerson1 | -14/+38 | |
| 2019-10-14 | new lints around `#[must_use]` fns | Andre Bogus | -0/+4 | |
| `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-04 | Rustup to rust-lang/rust#64874 | flip1995 | -14/+7 | |
| Episode 1 - The simple cases | ||||
| 2019-10-01 | Use new spans for expansion checking in loop lints | Manish Goregaokar | -8/+10 | |
| 2019-09-27 | Rustup to rust-lang/rust#64813 | flip1995 | -55/+55 | |
| 2019-09-26 | Rustup https://github.com/rust-lang/rust/pull/64513 | Lzu Tao | -8/+8 | |
| 2019-09-25 | needless_collect: fix suggestion, make test rustfixable | Manish Goregaokar | -2/+7 | |
| 2019-09-25 | arm.pats -> arm.pat | Manish Goregaokar | -4/+2 | |
| 2019-09-21 | for_loop: Split test into fixable/unfixable, make needless_range_loop use ↵ | Manish Goregaokar | -1/+1 | |
| updated range syntax | ||||
| 2019-09-18 | Work around qpath_res issue | Michael Wright | -7/+7 | |
| 2019-09-11 | run rustfmt | Matthias Krüger | -1/+1 | |
| 2019-09-10 | Auto merge of #4532 - rust-lang:integer-const, r=oli-obk | bors | -5/+5 | |
| New `is_integer_const` to check more const ints This mostly affects loop checks and the modulo_one lint. Tests were also updated where applicable. changelog: none | ||||
| 2019-09-10 | New `is_integer_const` to check more const ints | Andre Bogus | -5/+5 | |
| This mostly affects loop checks and the modulo_one lint. Tests were also updated where applicable. | ||||
| 2019-09-09 | Changed more Vec paths to diagnostic_items | Andre Bogus | -1/+1 | |
| 2019-09-09 | Use diagnostic item for | Andre Bogus | -4/+4 | |
| 2019-09-04 | Refactor option handling | Jeremy Stucki | -4/+1 | |
| 2019-09-01 | fix misleading doc for explicit_counter_loop lint | Arthur Woimée | -8/+7 | |
| 2019-08-22 | Add examples to some complexity lints | BO41 | -0/+8 | |
