| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2015-08-13 | fix | Manish Goregaokar | -5/+8 | |
| 2015-08-13 | oh the irony | Manish Goregaokar | -3/+3 | |
| 2015-08-13 | Some fixes from dogfooding clippy | Manish Goregaokar | -5/+6 | |
| 2015-08-13 | new lint: looping over x.iter() or x.iter_mut() (fixes #157) | Georg Brandl | -8/+32 | |
| 2015-08-13 | spelling fix, rework needless_bool with snippet (fixes #150) | Georg Brandl | -15/+25 | |
| 2015-08-13 | update_lints: add a check mode for travis runs | Georg Brandl | -4/+4 | |
| 2015-08-13 | Merge branch 'pr-152' | Manish Goregaokar | -67/+91 | |
| Conflicts: README.md src/lib.rs src/strings.rs | ||||
| 2015-08-13 | initial addition and subtraction for bytes and ints | llogiq | -2/+81 | |
| 2015-08-13 | Merge | llogiq | -1/+1 | |
| 2015-08-13 | grammar | Andre Bogus | -6/+6 | |
| 2015-08-13 | added `string_add` to `clippy` lint group | llogiq | -0/+1 | |
| 2015-08-13 | pulled strings passes together, added more tests | llogiq | -17/+2 | |
| 2015-08-13 | fixed formatting | llogiq | -24/+24 | |
| 2015-08-13 | added string_add lint and fixed string_add_assign + test | llogiq | -4/+44 | |
| 2015-08-13 | improved string_add/string_add_assign messages, Allow-by-default ↵ | llogiq | -3/+4 | |
| string_add_assign | ||||
| 2015-08-13 | update script: also generate lint list in lib.rs | Georg Brandl | -35/+36 | |
| 2015-08-13 | all: DRY for lint descriptions | Georg Brandl | -41/+64 | |
| * use the rustc style for lint descriptions * add a script to parse all lint descriptions and put the generated table into README | ||||
| 2015-08-13 | changed Constant to a struct with 'needed_resolution' bool | llogiq | -64/+138 | |
| 2015-08-13 | added follow flag | llogiq | -41/+113 | |
| 2015-08-13 | fixed if-condition match | llogiq | -2/+2 | |
| 2015-08-13 | First (incomplete) const folding | llogiq | -0/+131 | |
| 2015-08-13 | Merge branch 'pr-149' | Manish Goregaokar | -20/+22 | |
| 2015-08-13 | Merge branch 'pr-140' | Manish Goregaokar | -0/+146 | |
| Conflicts: src/lib.rs | ||||
| 2015-08-13 | lint messages: remove trailing period | Georg Brandl | -18/+20 | |
| Since lint messages often are suffixed by ", #[warn(xxx)] on by default" this trailing period produces an ugly clash with the comma. | ||||
| 2015-08-13 | tests: use fragment of lint text for error checking | Georg Brandl | -1/+1 | |
| (Did not touch strings.rs, which is fixed by @llogiq's PR) | ||||
| 2015-08-13 | lifetimes lint: include support for lifetimes as generic params | Georg Brandl | -0/+9 | |
| 2015-08-13 | lifetimes lint: straighten some code, add a few comments | Georg Brandl | -20/+28 | |
| 2015-08-13 | new lint for needless lifetimes (fixes #115) | Georg Brandl | -0/+129 | |
| 2015-08-13 | new lint: using `for i in 0..x { .. vec[i] .. }` instead of iterator (fixes #3) | Georg Brandl | -0/+108 | |
| 2015-08-13 | if_let_chain: allow mixing in normal ifs as well | Georg Brandl | -17/+33 | |
| 2015-08-12 | grammar | Andre Bogus | -2/+2 | |
| 2015-08-12 | unicode: add lint against non-ascii chars in literals (Allow by default), #85 | Georg Brandl | -15/+14 | |
| 2015-08-12 | Merge branch 'pr-138' | Manish Goregaokar | -2/+36 | |
| Conflicts: src/lib.rs | ||||
| 2015-08-12 | methods: lint against String.to_string (fixes #100) | Georg Brandl | -1/+10 | |
| 2015-08-12 | added `string_add` to `clippy` lint group | llogiq | -0/+1 | |
| 2015-08-12 | pulled strings passes together, added more tests | llogiq | -17/+2 | |
| 2015-08-12 | fixed formatting | llogiq | -24/+24 | |
| 2015-08-12 | added string_add lint and fixed string_add_assign + test | llogiq | -4/+44 | |
| 2015-08-12 | methods: move misc.StrToStringPass to MethodsPass | Georg Brandl | -34/+12 | |
| 2015-08-12 | new lint: warn if let-binding has unit value (fixes #74) | Georg Brandl | -2/+36 | |
| 2015-08-12 | Use snippet, pprust methods expand AST | Manish Goregaokar | -7/+6 | |
| 2015-08-12 | Merge pull request #137 from birkenfeld/collapsible_if_fix | Manish Goregaokar | -6/+8 | |
| collapsible_if: do not show Debug display of expression | ||||
| 2015-08-12 | collapsible_if: do not show Debug display of expression | Georg Brandl | -6/+8 | |
| Instead, pretty-print the inner block and use the same style as for the "single match => if let" lint. | ||||
| 2015-08-12 | len_zero: display full suggested expr in message | Georg Brandl | -7/+7 | |
| 2015-08-12 | all: make style of lint messages consistent | Georg Brandl | -48/+46 | |
| * start first sentence lowercased * use backticks to delimit code snippets * use "this is wrong. Consider doing X." consistently | ||||
| 2015-08-12 | utils: implement if_let_chain macro as suggested by isHavvy | Georg Brandl | -15/+43 | |
| 2015-08-11 | new lint for "let x = EXPR; x" at the end of functions (fixes #104) | Georg Brandl | -7/+42 | |
| 2015-08-11 | move NeedlessReturn pass out to its own module and rename to ReturnPass | Georg Brandl | -71/+78 | |
| 2015-08-11 | types: remove almost duplicate helper function | Georg Brandl | -11/+3 | |
| I guess "help" instead of "note" is fine as well, so we can get rid of the extra function. | ||||
| 2015-08-11 | new lint for Option.unwrap() and Result.unwrap() | Georg Brandl | -0/+43 | |
| The latter is set to Allow by default (fixes #24) | ||||
