summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* 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
* Use the new master bookmark when installing astroid.Claudiu Popa2015-10-281-3/+3
* Fix pylint warnings.Claudiu Popa2015-10-271-4/+4
* Merge heads.Claudiu Popa2015-10-275-46/+168
|\
| * Add a new convention message, 'consider-using-enumerate'Claudiu Popa2015-10-274-0/+117
| * Move unidiomatic-typecheck into the comparison checker from base.py, since it...Claudiu Popa2015-10-262-46/+51
* | Merged in dmand/pylint/fix-685 (pull request #294)Claudiu Popa2015-10-277-107/+220
|\ \ | |/ |/|
| * 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
* Add a Changelog entry for misplaced-comparison-constant.Claudiu Popa2015-10-261-0/+7
* 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-2614-32/+119
|\
| * Explicitely check for const to const comparisonLaura M?dioni2015-10-263-16/+40
| * add a new rule looking for yoda conditionsLaura M?dioni2015-10-1514-32/+95
* | 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
* | Added notes on integration with TextMateDaniele Procida2015-10-251-5/+63
* | Add test case for issue #559. Closes issue #559.Claudiu Popa2015-10-241-0/+7
* | Remove trailing whitespace.Claudiu Popa2015-10-221-1/+1
* | Merged in dmand/pylint/doc-emphasis-fix (pull request #290)Claudiu Popa2015-10-220-0/+0
|\ \
* | | Remove trailing whitespace from ChangeLogdoc-emphasis-fixDmitry Pribysh2015-10-221-5/+5
* | | Fix documentation build warnings and errorsDmitry Pribysh2015-10-224-6/+6
|/ /
* | Don't warn about abstract classes instantiated in their own body. Closes issu...Claudiu Popa2015-10-213-0/+34
* | Remove trailing whitespace.Claudiu Popa2015-10-201-1/+1
* | Obsolete options are not present by default in the generated configuration file.Claudiu Popa2015-10-205-3/+16
* | non-iterator-returned can detect classes with iterator-metaclasses.Claudiu Popa2015-10-204-18/+74
* | Merged in dmand/pylint/membership-test-checker (pull request #289)Claudiu Popa2015-10-200-0/+0
|\ \
* | | Add checker for membership rules and testsmembership-test-checkerDmitry Pribysh2015-10-1910-0/+228
|/ /
* | Correct the name of the messages.Claudiu Popa2015-10-181-2/+2
* | Disable not-iterable-context for a couple of false positives.Claudiu Popa2015-10-181-0/+2
* | Change the numeric ids of the new checkers.Claudiu Popa2015-10-182-2/+4
* | Update the contribution stats for Dmitry.Claudiu Popa2015-10-181-1/+1
* | Merged in dmand/pylint/iterable-checker (pull request #282)Claudiu Popa2015-10-1823-1/+478
|\ \
| * \ Merge with defaultiterable-checkerDmitry Pribysh2015-10-1823-1/+478
| |\ \ |/ / /
| * | Make iterable/mapping checker more smart and refactor it.Dmitry Pribysh2015-10-1517-81/+211
| * | Remove redundant unittests for iterable checkerDmitry Pribysh2015-10-081-135/+0
| * | Handle more corner cases in iterable/mapping checkerDmitry Pribysh2015-10-085-33/+109
| * | Add more positive functional tests for the iterable context checkerDmitry Pribysh2015-10-082-25/+79
| * | Refactor iterable context checkerDmitry Pribysh2015-10-081-29/+57