summaryrefslogtreecommitdiff
path: root/pylint/checkers
Commit message (Expand)AuthorAgeFilesLines
* improve NotCheckerLaura M?dioni2015-10-271-5/+8
* improve unneeded-not messagesLaura M?dioni2015-10-271-2/+2
* Check for nots too many in comparison expressionsLaura M?dioni2015-10-261-0/+31
* Ignore missing docstrings for decorated attribute setters and deletersMichael Kefeder2015-11-191-0/+12
* Cleanup pylint issuesClaudiu Popa2015-11-216-23/+18
* Added a new refactoring warning, 'simplifiable-if-statement'Claudiu Popa2015-11-211-1/+83
* Use the correct module.Claudiu Popa2015-11-201-2/+2
* Simplify the unflatten algorithm in order to not use NodeNG anymore.Claudiu Popa2015-11-201-5/+7
* Import has_known_bases and safe_infer back into pylint from astroid, until th...Claudiu Popa2015-11-2012-74/+106
* Merged in anentropic/pylint/remove-E0201-references (pull request #303)Claudiu Popa2015-11-181-1/+1
|\
| * error E0201 is obsolete - now E1101remove-E0201-referencesAnentropic2015-11-181-1/+1
* | check the number of boolean expressions in if statement is reasonnableLaura M?dioni2015-10-291-2/+42
* | Use safe inference in unpacking-non-sequence checkerDmitry Pribysh2015-11-091-1/+3
* | Refactor non-iterator-returned checker to use safe inferenceDmitry Pribysh2015-11-091-8/+24
* | fix get_type()Laura M?dioni2015-11-061-1/+1
* | Reduce number of false positives emitted by non-iterator-returned checkerDmitry Pribysh2015-11-071-4/+7
|/
* Add ChangeLog entry for too-many-nested-blocks and fix the errors in pylint.Claudiu Popa2015-11-044-82/+83
* Merged in lmedioni/pylint (pull request #298)Claudiu Popa2015-11-041-2/+120
|\
| * 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-301-2/+105
* | Fix pylint warning by rewriting part of BasicCheckerDmitry Pribysh2015-11-031-4/+2
* | Rename 'unsubscriptable-value' message to 'unsubscriptable-object'Dmitry Pribysh2015-11-031-4/+4
* | Add checker for unsubscriptable values used in subscript expression.Dmitry Pribysh2015-11-032-1/+41
|/
* 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
* Merged in lmedioni/pylint (pull request #295)Claudiu Popa2015-10-301-3/+43
|\
| * no-static/class-method: enhance the tests and fix the code accordinglyLaura M?dioni2015-10-291-4/+3
| * improve style and fix typos regarding no_class/staticmethod_decoratorLaura M?dioni2015-10-291-2/+3
| * check for static methods declared without a decoratorLaura M?dioni2015-10-291-5/+12
| * check for class methods declared without a decoratorLaura M?dioni2015-10-291-3/+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-272-46/+120
|\ \
| * | Add a new convention message, 'consider-using-enumerate'Claudiu Popa2015-10-271-0/+69
| * | 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-273-12/+16
* | Skip not-an-iterable and similar checks for Base/Abstract classesDmitry Pribysh2015-10-271-83/+78
|/
* 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-261-2/+1
* 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-261-5/+2
* 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-261-1/+1
* Merge heads.Claudiu Popa2015-10-261-2/+29
|\