| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2016-05-25 | Lint binary regexes | mcarton | -42/+72 | |
| 2016-05-25 | fix no_effect lint | Oliver Schneider | -5/+5 | |
| 2016-05-25 | simplify `mut_mut` lint | Oliver Schneider | -41/+23 | |
| 2016-05-24 | Split `new_without_default` and `new_without_default_derive`. | Andre Bogus | -10/+75 | |
| This is still very slow, because we do a trait lookup for each field. Perhaps storing the visited types in a set to reuse types would improve performance somewhat. Also we may want to pre-decide some known types (e.g. `Vec<T>`, `Option<T>`). | ||||
| 2016-05-23 | Let cargo-clippy exit with a code > 0 if some error occured | Benoît Zugmeyer | -2/+12 | |
| 2016-05-23 | Rustup to *1.10.0-nightly (476fe6eef 2016-05-21)* | mcarton | -3/+4 | |
| 2016-05-23 | Rustup to *1.10.0-nightly (764ef92ae 2016-05-19)* | mcarton | -6/+8 | |
| 2016-05-23 | Rustup to *1.10.0-nightly (9c6904ca1 2016-05-18)* | mcarton | -75/+88 | |
| 2016-05-18 | Merge branch 'pr-942' | Manish Goregaokar | -103/+88 | |
| 2016-05-17 | Rustup to *1.10.0-nightly (cd6a40017 2016-05-16)* | mcarton | -103/+88 | |
| 2016-05-16 | Don't panic if cargo rustc fails | Manish Goregaokar | -4/+2 | |
| 2016-05-16 | Allow invalid upcast comparisons | Manish Goregaokar | -3/+3 | |
| 2016-05-13 | Merge pull request #928 from oli-obk/unnecessary_operation | Martin Carton | -3/+76 | |
| add a companion lint to `no_effect` with suggestions for partially (in-)effective statements | ||||
| 2016-05-13 | add a companion lint to `no_effect` with suggestions for partially effective ↵ | Oliver Schneider | -3/+76 | |
| statements | ||||
| 2016-05-13 | Merge pull request #921 from afck/master | Martin Carton | -2/+2 | |
| fix typos | ||||
| 2016-05-13 | fix typos | Andreas Fackler | -2/+2 | |
| 2016-05-12 | Rustup to *1.10.0-nightly (22ac88f1a 2016-05-11)* | mcarton | -43/+40 | |
| 2016-05-12 | don't suggest closures over constants | Oliver Schneider | -0/+8 | |
| fixes #917 | ||||
| 2016-05-11 | Merge pull request #913 from oli-obk/assign_ops | llogiq | -1/+163 | |
| suggest `a op= b` over `a = a op b` | ||||
| 2016-05-11 | Merge pull request #915 from Manishearth/sysroot | llogiq | -3/+9 | |
| Use rustc --print sysroot, bump to v66 r? @llogiq | ||||
| 2016-05-11 | Merge pull request #914 from oli-obk/non_expressive_names | llogiq | -18/+23 | |
| similar_names fixes | ||||
| 2016-05-11 | Use rustc --print sysroot, bump to v66 | Manish Goregaokar | -3/+9 | |
| 2016-05-11 | add known problems | Oliver Schneider | -2/+2 | |
| 2016-05-11 | properly lint function argument patterns in similar_names | Oliver Schneider | -8/+8 | |
| 2016-05-11 | don't lint at the use-site of bad struct field bindings if they're shorthand | Oliver Schneider | -10/+15 | |
| fixes #899 | ||||
| 2016-05-11 | suggest `a op= b` over `a = a op b` | Oliver Schneider | -1/+163 | |
| 2016-05-10 | Support either rustup or multirust environment variables | Josh Stone | -2/+7 | |
| Fixes #910 | ||||
| 2016-05-10 | Merge pull request #681 from oli-obk/split | Manish Goregaokar | -5/+139 | |
| cargo clippy | ||||
| 2016-05-10 | Remove unused imports | Seo Sanghyeon | -6/+0 | |
| 2016-05-09 | `cargo clippy` subcommand | Oliver Schneider | -5/+139 | |
| 2016-05-09 | fallout | Oliver Schneider | -1/+1 | |
| 2016-05-09 | needless borrows found in clippy | Oliver Schneider | -35/+35 | |
| 2016-05-09 | add needless_borrow lint | Oliver Schneider | -0/+53 | |
| 2016-05-07 | Merge pull request #906 from Manishearth/birkenfeld-master | Manish Goregaokar | -38/+34 | |
| Rustup to *rustc 1.10.0-nightly (62e2b2fb7 2016-05-06)* | ||||
| 2016-05-08 | Fix tests | mcarton | -14/+12 | |
| 2016-05-06 | fix markdown generated from code | Oliver Schneider | -2/+2 | |
| 2016-05-05 | Don’t warn in titles in DOC_MARKDOWN | mcarton | -0/+6 | |
| 2016-05-05 | Fix issue with `DOC_MARKDOWN` and punctuation | mcarton | -3/+4 | |
| 2016-05-04 | rustup: fix breakage in diagnostics API | Georg Brandl | -24/+22 | |
| Also adds a function to add the clippy wiki note, which is used a few times. | ||||
| 2016-05-02 | doc markdown lint shows the exact word location | Oliver Schneider | -5/+15 | |
| 2016-05-02 | doc markdown lint's span shows the line instead of the item | Oliver Schneider | -31/+18 | |
| 2016-05-02 | Merge branch 'pr-890' | Manish Goregaokar | -16/+21 | |
| 2016-05-02 | similar_names should be allow-by-default | Oliver Schneider | -1/+1 | |
| 2016-05-02 | don't lint similar_names inside #[test] functions | Oliver Schneider | -14/+19 | |
| 2016-04-30 | fixed tests, added clippy_restrictions lint group | Andre Bogus | -15/+22 | |
| 2016-04-30 | lint remainder, document test w/ half expr | Andre Bogus | -1/+1 | |
| 2016-04-30 | fix #887: New lints for integer/floating-point arithmetic | Andre Bogus | -0/+109 | |
| 2016-04-26 | Centralize more paths | mcarton | -3/+3 | |
| 2016-04-26 | Fix paths resolution | mcarton | -47/+78 | |
| Put more paths into the `utils::paths` module. | ||||
| 2016-04-26 | Rustup to rustc 1.10.0-nightly (645dd013a 2016-04-24); release 0.0.64 | Manish Goregaokar | -7/+7 | |
