| Commit message (Expand) | Author | Age | Files | Lines |
* | Don't use .iteritems, it doesn't exist on Python 3. Change some variable name... | Claudiu Popa | 2015-11-29 | 1 | -11/+8 |
* | Add some more comments about the limitations of this rule | Laura M?dioni | 2015-11-24 | 1 | -0/+7 |
* | Drop print | Laura M?dioni | 2015-11-24 | 1 | -2/+0 |
* | Use a stack of dictionaries instead of 3 dicts | Laura M?dioni | 2015-11-24 | 1 | -24/+8 |
* | check if the type of a variable is redefined (at a function, class or module ... | Laura M?dioni | 2015-10-30 | 1 | -0/+88 |
* | Ignore multiple comparisons in unneeded-not rule | Laura M?dioni | 2015-11-25 | 1 | -0/+3 |
* | Add is to the checked operators | Laura M?dioni | 2015-11-24 | 1 | -1/+1 |
* | Fix crash with 'in' operator on unneeded-not | Laura M?dioni | 2015-10-29 | 1 | -1/+3 |
* | improve NotChecker | Laura M?dioni | 2015-10-27 | 1 | -5/+8 |
* | improve unneeded-not messages | Laura M?dioni | 2015-10-27 | 1 | -2/+2 |
* | Check for nots too many in comparison expressions | Laura M?dioni | 2015-10-26 | 1 | -0/+31 |
* | Ignore missing docstrings for decorated attribute setters and deleters | Michael Kefeder | 2015-11-19 | 1 | -0/+12 |
* | Cleanup pylint issues | Claudiu Popa | 2015-11-21 | 1 | -1/+1 |
* | Added a new refactoring warning, 'simplifiable-if-statement' | Claudiu Popa | 2015-11-21 | 1 | -1/+83 |
* | Import has_known_bases and safe_infer back into pylint from astroid, until th... | Claudiu Popa | 2015-11-20 | 1 | -13/+14 |
* | Add ChangeLog entry for too-many-nested-blocks and fix the errors in pylint. | Claudiu Popa | 2015-11-04 | 1 | -9/+8 |
* | Merged in lmedioni/pylint (pull request #298) | Claudiu Popa | 2015-11-04 | 1 | -2/+120 |
|\ |
|
| * | some more comments for too-many-nested-blocks rule implementation | Laura M?dioni | 2015-11-03 | 1 | -0/+7 |
| * | add an extra sentence saying why blocks nesting is a bad pattern | Laura M?dioni | 2015-11-03 | 1 | -1/+2 |
| * | also count if nodes from ifexp and list comprehension | Laura M?dioni | 2015-11-02 | 1 | -0/+7 |
| * | check if the number of nested block in a function or a method isn't too high | Laura M?dioni | 2015-10-30 | 1 | -2/+105 |
* | | Fix pylint warning by rewriting part of BasicChecker | Dmitry Pribysh | 2015-11-03 | 1 | -4/+2 |
|/ |
|
* | Fix pylint warnings. | Claudiu Popa | 2015-10-27 | 1 | -4/+4 |
* | Add a new convention message, 'consider-using-enumerate' | Claudiu Popa | 2015-10-27 | 1 | -0/+69 |
* | Move unidiomatic-typecheck into the comparison checker from base.py, since it... | Claudiu Popa | 2015-10-26 | 1 | -1/+51 |
* | Simplify visit_compare, by moving the verifications for misplaced constants i... | Claudiu Popa | 2015-10-26 | 1 | -4/+4 |
* | Use the representation of the context when building the message for misplaced... | Claudiu Popa | 2015-10-26 | 1 | -2/+1 |
* | Simplify _check_misplaced_constant. | Claudiu Popa | 2015-10-26 | 1 | -8/+7 |
* | Don't emit misplaced-comparison-constant for constant tests, such as true == ... | Claudiu Popa | 2015-10-26 | 1 | -5/+2 |
* | Use a lower message id for misplaced-comparison-constant. | Claudiu Popa | 2015-10-26 | 1 | -1/+1 |
* | Make check_singleton_comparison a private function. | Claudiu Popa | 2015-10-26 | 1 | -3/+3 |
* | Update the docstring a little bit. | Claudiu Popa | 2015-10-26 | 1 | -2/+3 |
* | Add an extra space between classes. | Claudiu Popa | 2015-10-26 | 1 | -0/+1 |
* | Make misplaced-comparison-constant a convention, rather than a warning. | Claudiu Popa | 2015-10-26 | 1 | -1/+1 |
* | Merge heads. | Claudiu Popa | 2015-10-26 | 1 | -2/+29 |
|\ |
|
| * | Explicitely check for const to const comparison | Laura M?dioni | 2015-10-26 | 1 | -10/+13 |
| * | add a new rule looking for yoda conditions | Laura M?dioni | 2015-10-15 | 1 | -2/+26 |
* | | Remove trailing whitespace. | Claudiu Popa | 2015-10-22 | 1 | -1/+1 |
* | | Fix documentation build warnings and errors | Dmitry Pribysh | 2015-10-22 | 1 | -1/+1 |
* | | Don't warn about abstract classes instantiated in their own body. Closes issu... | Claudiu Popa | 2015-10-21 | 1 | -0/+11 |
|/ |
|
* | Don't warn about Starred nodes used properly in unpacking contexts | Claudiu Popa | 2015-10-10 | 1 | -0/+6 |
* | Use the any builtin, instead of evaluating the entire list of instance attrib... | Claudiu Popa | 2015-10-09 | 1 | -1/+1 |
* | Simplify the check. | Claudiu Popa | 2015-10-04 | 1 | -4/+5 |
* | Remove unused parameter. | Claudiu Popa | 2015-10-04 | 1 | -3/+3 |
* | Add initial version of comparison checkercomparison-checker | Dmitry Pribysh | 2015-10-03 | 1 | -0/+39 |
* | Grammar fix. | Claudiu Popa | 2015-09-23 | 1 | -1/+1 |
* | Show what nonlocal was found without a binding. | Claudiu Popa | 2015-09-21 | 1 | -3/+4 |
* | Add changelog entry for 014f596 and a couple of other fixes. | Claudiu Popa | 2015-09-21 | 1 | -2/+4 |
* | Add a new check for the nonlocal variables without binding (close issue #582)fix-582 | Stephane Wirtel | 2015-09-21 | 1 | -0/+27 |
* | Make pylint work with Python 3.5 changes in astroid. | Claudiu Popa | 2015-09-18 | 1 | -17/+46 |