summaryrefslogtreecommitdiff
path: root/pylint
Commit message (Expand)AuthorAgeFilesLines
* Change the variable name to something more suggestiveClaudiu Popa2015-11-251-6/+7
* Fix some docstrings and the Python 3 testsClaudiu Popa2015-11-255-8/+10
* Fix new import related errors in pylint's codebase.Claudiu Popa2015-11-2520-45/+51
* Improve a bit wrong-import-position code and add commentsLaura M?dioni2015-11-241-7/+11
* Simplify a bit the algorithm checking for ungrouped importsLaura M?dioni2015-11-241-12/+8
* Remove a chunk of code that was never executedLaura M?dioni2015-11-231-3/+0
* Factorize code in _record_import methodLaura M?dioni2015-11-231-9/+13
* slightly change wrong-import-position message and add forgotten functional testLaura M?dioni2015-11-123-2/+26
* Check imports are located at the top of the module (right after docstring and...Laura M?dioni2015-11-1041-62/+102
* Check imports are ordered (standard, 3rd party, local) and grouped by packageLaura M?dioni2015-11-0913-9/+131
* Fix instances of unneeded-not in pylint's codebase.Claudiu Popa2015-11-258-9/+8
* Add is to the checked operatorsLaura M?dioni2015-11-243-1/+4
* Fix crash with 'in' operator on unneeded-notLaura M?dioni2015-10-293-2/+9
* improve NotCheckerLaura M?dioni2015-10-271-5/+8
* improve unneeded-not messagesLaura M?dioni2015-10-272-14/+14
* Check for nots too many in comparison expressionsLaura M?dioni2015-10-264-1/+85
* Ignore missing docstrings for decorated attribute setters and deletersMichael Kefeder2015-11-192-0/+31
* Cleanup pylint issuesClaudiu Popa2015-11-2110-39/+22
* Added a new refactoring warning, 'simplifiable-if-statement'Claudiu Popa2015-11-213-1/+207
* 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-293-2/+66
* | Use safe inference in unpacking-non-sequence checkerDmitry Pribysh2015-11-095-27/+37
* | 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-073-17/+24
* | MergeClaudiu Popa2015-11-051-2/+13
|\ \
| * | display properties as attributes in pyreverse class diagramspaceone2015-10-121-2/+13
* | | Fix the test to work on both Python versions.Claudiu Popa2015-11-041-1/+1
* | | Add test for deques to `unsubscriptable-object` functional testsDmitry Pribysh2015-11-041-0/+6
| |/ |/|
* | Add ChangeLog entry for too-many-nested-blocks and fix the errors in pylint.Claudiu Popa2015-11-045-105/+109
* | 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