summaryrefslogtreecommitdiff
path: root/pylint
Commit message (Expand)AuthorAgeFilesLines
...
* | Merged in lmedioni/pylint (pull request #298)Claudiu Popa2015-11-043-2/+217
|\ \
| * | some more comments for too-many-nested-blocks rule implementationLaura M?dioni2015-11-031-0/+7
| * | add an extra sentence saying why blocks nesting is a bad patternLaura M?dioni2015-11-031-1/+2
| * | also count if nodes from ifexp and list comprehensionLaura M?dioni2015-11-021-0/+7
| * | check if the number of nested block in a function or a method isn't too highLaura M?dioni2015-10-303-2/+202
* | | Fix pylint warning by rewriting part of BasicCheckerDmitry Pribysh2015-11-031-4/+2
* | | Rename 'unsubscriptable-value' message to 'unsubscriptable-object'Dmitry Pribysh2015-11-033-32/+32
* | | Add checker for unsubscriptable values used in subscript expression.Dmitry Pribysh2015-11-035-2/+140
|/ /
* | Fix an occurrence of no-classmethod-decorator.Claudiu Popa2015-10-301-1/+1
* | Remove unused import.Claudiu Popa2015-10-301-1/+1
* | Separe the conditions to improve the readability of the code.Claudiu Popa2015-10-301-0/+4
* | Prefer any instead of for.Claudiu Popa2015-10-301-4/+3
* | Fix the tests to work on both Python versions.Claudiu Popa2015-10-302-2/+2
* | Merged in lmedioni/pylint (pull request #295)Claudiu Popa2015-10-3012-7/+131
|\ \
| * | no-static/class-method: enhance the tests and fix the code accordinglyLaura M?dioni2015-10-295-7/+24
| * | improve style and fix typos regarding no_class/staticmethod_decoratorLaura M?dioni2015-10-293-4/+5
| * | check for static methods declared without a decoratorLaura M?dioni2015-10-296-8/+44
| * | check for class methods declared without a decoratorLaura M?dioni2015-10-299-6/+76
* | | Add a few functional tests for enhanced unpacking checkerenhance-unpacking-checkerDmitry Pribysh2015-10-292-13/+36
* | | Make tuple unpacking checker emit less false negativesDmitry Pribysh2015-10-293-142/+151
* | | Fix pylint warnings.Claudiu Popa2015-10-271-4/+4
* | | Merge heads.Claudiu Popa2015-10-274-46/+164
|\ \ \
| * | | Add a new convention message, 'consider-using-enumerate'Claudiu Popa2015-10-273-0/+113
| * | | Move unidiomatic-typecheck into the comparison checker from base.py, since it...Claudiu Popa2015-10-262-46/+51
| |/ /
* | | Make iterable checker skip classes that are inferred to be abstractfix-685Dmitry Pribysh2015-10-277-25/+121
* | | Skip not-an-iterable and similar checks for Base/Abstract classesDmitry Pribysh2015-10-272-84/+101
|/ /
* | Simplify visit_compare, by moving the verifications for misplaced constants i...Claudiu Popa2015-10-261-4/+4
* | Use the representation of the context when building the message for misplaced...Claudiu Popa2015-10-263-2/+4
* | Simplify _check_misplaced_constant.Claudiu Popa2015-10-261-8/+7
* | Don't emit misplaced-comparison-constant for constant tests, such as true == ...Claudiu Popa2015-10-263-15/+6
* | Use a lower message id for misplaced-comparison-constant.Claudiu Popa2015-10-261-1/+1
* | Make check_singleton_comparison a private function.Claudiu Popa2015-10-261-3/+3
* | Update the docstring a little bit.Claudiu Popa2015-10-261-2/+3
* | Add an extra space between classes.Claudiu Popa2015-10-261-0/+1
* | Make misplaced-comparison-constant a convention, rather than a warning.Claudiu Popa2015-10-263-5/+5
* | Merge heads.Claudiu Popa2015-10-2613-32/+117
|\ \
| * | Explicitely check for const to const comparisonLaura M?dioni2015-10-263-16/+40
| * | add a new rule looking for yoda conditionsLaura M?dioni2015-10-1513-32/+93
| |/
* | Add test for verifying that __name__ can't be accessed from an instance.Claudiu Popa2015-10-262-0/+7
* | Remove the list parantheses for a sum call.Claudiu Popa2015-10-261-1/+1
* | Use a generator comprehension instead of creating a list.Claudiu Popa2015-10-261-1/+1
* | Cleanup _parallel_task by moving the creation of the config into its own func...Claudiu Popa2015-10-261-3/+7
* | Add test case for issue #559. Closes issue #559.Claudiu Popa2015-10-241-0/+7
* | Remove trailing whitespace.Claudiu Popa2015-10-221-1/+1
* | Fix documentation build warnings and errorsDmitry Pribysh2015-10-222-2/+2
* | Don't warn about abstract classes instantiated in their own body. Closes issu...Claudiu Popa2015-10-212-0/+31
* | Remove trailing whitespace.Claudiu Popa2015-10-201-1/+1
* | Obsolete options are not present by default in the generated configuration file.Claudiu Popa2015-10-204-3/+13
* | non-iterator-returned can detect classes with iterator-metaclasses.Claudiu Popa2015-10-203-18/+70
* | Add checker for membership rules and testsmembership-test-checkerDmitry Pribysh2015-10-199-0/+224