| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2016-01-03 | Merge branch 'pr-538' | Manish Goregaokar | -3/+37 | |
| Conflicts: README.md | ||||
| 2016-01-03 | fixups | Manish Goregaokar | -12/+13 | |
| 2016-01-03 | Use same error message for OPTION_UNWRAP_USED and RESULT_UNWRAP_USED | mcarton | -6/+13 | |
| IIRC, Result::expect wasn't stable until quite recently, which might be why there was 2 different error messages. | ||||
| 2016-01-03 | Add new lint on function naming check (the '_') | Guillaume Gomez | -3/+36 | |
| 2016-01-03 | Add missing WRONG_PUB_SELF_CONVENTION in lint_array! and corresponding test | mcarton | -2/+2 | |
| 2016-01-02 | Merge pull request #520 from mcarton/#471 | llogiq | -87/+271 | |
| Implement #471 | ||||
| 2016-01-02 | Merge pull request #535 from GuillaumeGomez/improve_field_help | llogiq | -8/+33 | |
| Add help on field binding | ||||
| 2016-01-02 | Merge branch 'master' of https://github.com/Manishearth/rust-clippy into #471 | mcarton | -215/+451 | |
| 2016-01-02 | Add macro check for box vec (fixes #529) | Manish Goregaokar | -3/+4 | |
| 2016-01-02 | Add smarter macro check for block_in_if (fixes #528) | Manish Goregaokar | -1/+10 | |
| 2016-01-02 | Improve documentation on match_ref_pats (fixes #532) | Manish Goregaokar | -2/+2 | |
| 2016-01-02 | Rustup to syntax::errors changes | Manish Goregaokar | -66/+104 | |
| 2016-01-02 | Add help on field binding | Guillaume Gomez | -8/+33 | |
| 2016-01-01 | Minor documentation cleanups | Johannes Linke | -10/+10 | |
| 2016-01-01 | Remove reference to a fixed issue | Johannes Linke | -1/+1 | |
| 2016-01-01 | Add "warn/allow by default" to lint descriptions where it was missing. | Johannes Linke | -13/+14 | |
| 2015-12-30 | Make MethodsPass lint notes clearer | Devon Hollowood | -4/+7 | |
| 2015-12-30 | Bug fix | Devon Hollowood | -4/+4 | |
| 2015-12-30 | Add SEARCH_IS_SOME lint | Devon Hollowood | -0/+41 | |
| 2015-12-28 | Add FILTER_NEXT lint | Devon Hollowood | -3/+35 | |
| 2015-12-28 | Extend escape analysis to arguments | Seo Sanghyeon | -1/+14 | |
| 2015-12-27 | Replace `match_method_chain()` with `method_chain_args()` | Devon Hollowood | -73/+44 | |
| 2015-12-27 | Refactor `check_expr()` impl for `MethodsPass` | Devon Hollowood | -103/+188 | |
| 2015-12-24 | Fix panic lint | Manish Goregaokar | -3/+10 | |
| 2015-12-23 | Fix #518 | mcarton | -2/+48 | |
| 2015-12-23 | Fix missing parameter in `panic!` | mcarton | -1/+1 | |
| 2015-12-23 | Put tests in tests folder | mcarton | -18/+4 | |
| 2015-12-23 | Only run MATCH_OVERLAPPING_ARM on integral matches | mcarton | -3/+4 | |
| 2015-12-23 | Fix typo | mcarton | -9/+9 | |
| 2015-12-23 | Update README | mcarton | -1/+1 | |
| 2015-12-23 | Split MatchPass::check_expr for dogfood | mcarton | -101/+110 | |
| 2015-12-23 | Consider literal patterns in MATCH_OVERLAPPING_ARM | mcarton | -0/+7 | |
| 2015-12-23 | Implement #471 | mcarton | -2/+183 | |
| 2015-12-23 | Don't trigger block_in_if_condition_expr lint if the block is unsafe | Florian Hartwig | -14/+16 | |
| 2015-12-22 | Merge pull request #509 from mcarton/array-indexing | Manish Goregaokar | -0/+55 | |
| Implement #364 | ||||
| 2015-12-22 | Merge pull request #514 from mcarton/remove-dup | Manish Goregaokar | -46/+0 | |
| Remove dup | ||||
| 2015-12-22 | Remove duplicated if_let_chain! macro definition | mcarton | -46/+0 | |
| 2015-12-22 | Nightly fixes | Markus Unterwaditzer | -3/+3 | |
| As of https://github.com/rust-lang/rust/commit/e3da2a90033d233bf6d77e3c725880c12cfc8728#diff-12e06f1e9ca371a11bdc4615f50a4071L59 HirVec is syntax::ptr::P instead of Vec. | ||||
| 2015-12-21 | Fix some typos | mcarton | -2/+2 | |
| 2015-12-21 | Implement #364 | mcarton | -0/+55 | |
| 2015-12-21 | Implement #507 | Devon Hollowood | -6/+21 | |
| Make `used_underscore_binding` lint compatible with MacroAttributes expansions. TODO: Add a good test for this. | ||||
| 2015-12-20 | Add macro check to used_underscore | Manish Goregaokar | -3/+5 | |
| 2015-12-19 | Rust upgrade to rustc 1.7.0-nightly (8ad12c3e2 2015-12-19) | Manish Goregaokar | -8/+5 | |
| 2015-12-19 | Merge pull request #499 from devonhollowood/underscore_binding | Manish Goregaokar | -1/+70 | |
| Add used_underscore_binding lint | ||||
| 2015-12-18 | Make compatible with `unused_variables` lint | Devon Hollowood | -12/+18 | |
| 2015-12-18 | Remove local variable check | Devon Hollowood | -1/+0 | |
| 2015-12-17 | Merge pull request #494 from sanxiyn/suggestion-2 | Manish Goregaokar | -6/+11 | |
| Use suggestion for needless_return | ||||
| 2015-12-16 | Make suggested changes | Devon Hollowood | -6/+2 | |
| 2015-12-14 | adding missing doc comments | llogiq | -0/+93 | |
| 2015-12-14 | fix boxed_local example | llogiq | -0/+1 | |
