| Age | Commit message (Expand) | Author | Lines |
| 2015-08-20 | Fixed a little oversight. | R.Chavignat | -1/+1 |
| 2015-08-20 | Simplified reexported ast::* type paths. | R.Chavignat | -50/+50 |
| 2015-08-20 | Also test that the CastExpr's right arm is numeric. | R.Chavignat | -1/+1 |
| 2015-08-20 | Moved allow(unknown_lints) to crate level. | R.Chavignat | -1/+2 |
| 2015-08-20 | Added examples to lint descriptions. | R.Chavignat | -3/+3 |
| 2015-08-20 | Initial implementation of lossy cast lints. | R.Chavignat | -10/+148 |
| 2015-08-19 | Merge pull request #204 from Manishearth/bit-mask | llogiq | -11/+29 |
| 2015-08-19 | Mul and Div for integers | llogiq | -8/+20 |
| 2015-08-19 | fixed #203 and #197 | llogiq | -11/+29 |
| 2015-08-19 | new lint: comparing unit types (fixes #201) | Georg Brandl | -0/+31 |
| 2015-08-18 | re-applied birkenfeld's improvements | llogiq | -12/+12 |
| 2015-08-18 | more small const improvements | llogiq | -21/+15 |
| 2015-08-18 | consts: minor improvements | Georg Brandl | -45/+31 |
| 2015-08-17 | consts: convert to using a struct with state | Georg Brandl | -315/+282 |
| 2015-08-17 | const eval: implement ! for integers | Georg Brandl | -10/+41 |
| 2015-08-17 | added test and fixed negativity check in Partial{Eq, Ord} impl | llogiq | -2/+3 |
| 2015-08-17 | Added bit operations to const folding | llogiq | -6/+19 |
| 2015-08-17 | dogfooding | llogiq | -2/+2 |
| 2015-08-17 | added PartialEq/PartialOrd to ConstantVariant, used to implement comparing bi... | llogiq | -6/+87 |
| 2015-08-17 | make float_cmp check for zero | llogiq | -0/+5 |
| 2015-08-17 | fix 189, fixed a few warnings, ==/!= for consts, refactored consts test | llogiq | -9/+9 |
| 2015-08-17 | Merge pull request #184 from Manishearth/identity_op | Manish Goregaokar | -29/+409 |
| 2015-08-17 | Merge pull request #186 from birkenfeld/fix | Manish Goregaokar | -2/+2 |
| 2015-08-17 | loops: fix two trailing periods in lint msgs | Georg Brandl | -2/+2 |
| 2015-08-17 | new lint: lint when iterating over any Iterator::next() result (fixes #182) | Georg Brandl | -4/+22 |
| 2015-08-16 | made is_negative(..) public (+doctest), fixed identity_op and precedence | llogiq | -30/+23 |
| 2015-08-16 | Merge pull request #179 from nweston/step-by-zero | llogiq | -0/+55 |
| 2015-08-16 | New lint: Range::step_by(0) (fixes #95) | Nathan Weston | -0/+55 |
| 2015-08-16 | dogfooding, part 2 | llogiq | -5/+5 |
| 2015-08-16 | dogfooded | llogiq | -5/+4 |
| 2015-08-16 | With working test now | llogiq | -11/+2 |
| 2015-08-16 | restrict toplevel_ref_arg to only functions (fixes #170) | Manish Goregaokar | -1/+5 |
| 2015-08-16 | add some imports to guard against crate moves | Georg Brandl | -3/+9 |
| 2015-08-16 | all: organize imports | Georg Brandl | -67/+40 |
| 2015-08-16 | all: remove unneeded as_str() calls for ast::Name | Georg Brandl | -10/+9 |
| 2015-08-15 | Merge pull request #177 from birkenfeld/if_let_mini_fix | Manish Goregaokar | -28/+37 |
| 2015-08-15 | misc: fix check for unit body in "match -> if let" lint (fixes #172) | Georg Brandl | -28/+37 |
| 2015-08-15 | lifetimes: fix case with one unnamed and one static ref (fixes #171) | Georg Brandl | -2/+2 |
| 2015-08-15 | Merge pull request #174 from birkenfeld/small_fixes | llogiq | -1/+1 |
| 2015-08-15 | methods: allow Option.unwrap by default | Georg Brandl | -1/+1 |
| 2015-08-14 | changed const to consts to avoid keyword, added test, fixed a lot of bugs | llogiq | -81/+122 |
| 2015-08-14 | Removed #![allow(redundant_closure)] on eq_op | llogiq | -1/+0 |
| 2015-08-14 | fixed false positives (at the cost of some false negatives) | llogiq | -28/+45 |
| 2015-08-13 | Fix dogfood | Manish Goregaokar | -2/+2 |
| 2015-08-13 | trim_multiline: ignore empty lines | Manish Goregaokar | -4/+7 |
| 2015-08-13 | Handle tabs | Manish Goregaokar | -2/+8 |
| 2015-08-13 | Add trim_multiline utility (fixes #139) | Manish Goregaokar | -4/+34 |
| 2015-08-13 | Merge pull request #151 from birkenfeld/needless_bool_msg | Manish Goregaokar | -15/+25 |
| 2015-08-13 | Address review comments, move to travis | Manish Goregaokar | -3/+3 |
| 2015-08-13 | lifetimes: try to fix w.r.t. lifetimes from parent scopes (fixes #162) | Georg Brandl | -10/+50 |