summaryrefslogtreecommitdiff
path: root/pylint/checkers
Commit message (Expand)AuthorAgeFilesLines
* Rename checking function for 'super()' call checking and update Changelog.fix-667Dmitry Pribysh2015-10-181-2/+2
* Make `no-self-use` checker not throw a warning if method has a `super()` call.Dmitry Pribysh2015-10-171-1/+10
* Don't emit 'assigning-non-slot' for descriptors. Closes issue #652.Claudiu Popa2015-10-041-0/+23
* Simplify the check.Claudiu Popa2015-10-041-4/+5
* Remove unused parameter.Claudiu Popa2015-10-041-3/+3
* Add initial version of comparison checkercomparison-checkerDmitry Pribysh2015-10-031-0/+39
* Change multiple-imports message type to `convention` with code C0410Dmitry Pribysh2015-10-011-1/+1
* Add checker to identify multiple imports on one line.Dmitry Pribysh2015-10-011-1/+9
* Update the list of special methods with the methods added in PEP 492.Claudiu Popa2015-10-011-3/+3
* Remove line from the license header, which was inadvertently copied from base.pyClaudiu Popa2015-10-011-1/+0
* Start adding a protocol checker for the async features added in PEP 492:Claudiu Popa2015-10-011-0/+84
* Don't consider a class abstract if its members can't be properly inferred.Claudiu Popa2015-09-301-0/+6
* Fix #362 - support in import and add testmoylop2602015-09-271-1/+1
* Fix #362 - Show deprecated-module even if the module is not installedmoylop2602015-09-261-1/+1
* Grammar fix.Claudiu Popa2015-09-231-1/+1
* Retrieve the qualified name only after filtering the proper needs.Claudiu Popa2015-09-211-1/+1
* Show what nonlocal was found without a binding.Claudiu Popa2015-09-211-3/+4
* Add changelog entry for 014f596 and a couple of other fixes.Claudiu Popa2015-09-211-2/+4
* Add a comment regarding the nodes we're not interested into.Claudiu Popa2015-09-211-1/+2
* Merged in matrixise/pylint/fix-582 (pull request #274)Claudiu Popa2015-09-211-0/+27
|\
| * Add a new check for the nonlocal variables without binding (close issue #582)fix-582Stephane Wirtel2015-09-211-0/+27
* | Merged in fnstudio/pylint (pull request #275)Claudiu Popa2015-09-211-2/+10
|\ \
| * | deprecated method names are shown correctlypalazzem2015-09-211-2/+10
| * | Merged in palazzem/pylint (pull request #271)Claudiu Popa2015-09-211-1/+1
| |\ \
| * | | fixed _check_deprecated_method during pylint lintingpalazzem2015-09-211-2/+2
| | |/ | |/|
* | | Fix issue #314: bad-whitespace looks weird when the line does not end with ne...Fabio Natali2015-09-211-2/+5
| |/ |/|
* | Improve the test suite for deprecated-methodClaudiu Popa2015-09-211-1/+1
|/
* Fix tests and use all the inference results when checking for bad-open-mode a...Claudiu Popa2015-09-211-10/+12
* Deprecation check based on Python versionCezar2015-09-201-63/+80
* Fix some errorsCezar2015-09-201-3/+3
* Add checker for method deprecationCezar2015-09-201-50/+67
* Add deprecation checkersCezar2015-09-191-27/+59
* Document the checker methodCezar2015-09-191-0/+4
* Add check for deprecated unittest aliasesCezar2015-09-191-2/+25
* Fix indentation problem.Claudiu Popa2015-09-191-2/+2
* Move the block after the check_reimport block.Claudiu Popa2015-09-191-5/+5
* Use a counter instead of manually peeking at the next items.Claudiu Popa2015-09-191-5/+8
* Use enumarete() instead of range()Cezar2015-09-191-3/+3
* Raise 'reimported' on duplice import on single lineCezar2015-09-191-0/+7
* Remove trailing whitespace.Claudiu Popa2015-09-181-1/+1
* Exempt str.format from redundant-keyword-arg when self is passed as a keywordClaudiu Popa2015-09-181-2/+10
* Make pylint work with Python 3.5 changes in astroid.Claudiu Popa2015-09-184-26/+56
* Fix false positives with unnecessary-lambda. Closes issue #630.Claudiu Popa2015-09-051-14/+2
* Bring logilab-common's ureports into pylint.reporters.Claudiu Popa2015-09-055-10/+7
* Fix the name of the attribute, it's six.string_types.Claudiu Popa2015-09-051-1/+1
* fixed merge conflictObscuron2015-09-0415-259/+284
|\
| * Allow a bare raise only inside an except clause.Claudiu Popa2015-09-041-5/+4
| * Add a new error, 'misplaced-bare-raise'.Claudiu Popa2015-09-041-3/+32
| * Bring parts of logilab.common.configuration and logilab.common.optik_ext into...Claudiu Popa2015-09-011-2/+1
| * Use the new node names for the visit and leave methodsClaudiu Popa2015-08-2612-51/+51