summaryrefslogtreecommitdiff
path: root/pylint
Commit message (Expand)AuthorAgeFilesLines
* Make the list a generator and continue when there is an error in the fixme lo...Claudiu Popa2019-01-201-4/+4
* Fixme should be triggered only in commentsRogalski, Lukasz2019-01-202-110/+81
* Use an explicit dev prefix otherwise it will generate a post by defaultClaudiu Popa2019-01-201-1/+1
* Prepare a dev releaseClaudiu Popa2019-01-201-1/+1
* remove entire _patch_submodulesNicolas Dickreuter2019-01-201-16/+1
* remove popping for all versionsNicolas Dickreuter2019-01-201-5/+1
* avoid popping __main__ for python version >= 3.3Nicolas Dickreuter2019-01-201-1/+1
* Add test that a recursion error does not happen. Close PyCQA/astroid#623Claudiu Popa2019-01-182-0/+10
* Add test that a recursion error does not happen any longer. Close #2463Claudiu Popa2019-01-172-0/+9
* Bring infer_name_module() from astroid right hereClaudiu Popa2019-01-131-1/+8
* Fixed a false positive for ``unused-variable`` and ``nonlocal`` assignmentsClaudiu Popa2019-01-132-1/+16
* Expose/export BaseTokenChecker in __all__ as well?Bruno P. Kinoshita2019-01-071-1/+1
* Support optional ~ or ! prefix for docstring typesJim Robertson2018-12-283-11/+63
* Fix missing-raises-doc false positive (W9006)Jim Robertson2018-12-281-1/+1
* Fix missing-raises-doc false positive (W9006)Jim Robertson2018-12-283-14/+222
* Generalize `chained-comparison` (#2655)Justin Li2018-12-213-52/+80
* Adjust the docstring a bitClaudiu Popa2018-12-201-3/+5
* Added load_configuration() hook for pluginsMatus Valo2018-12-203-0/+75
* Refactor - Rename _messages to _messages_definitionsPierre Sassoulas2018-12-181-7/+7
* Refactor - Made the error message predictablePierre Sassoulas2018-12-182-3/+7
* Refactor - get_messages -> get_messages_from_checkerPierre Sassoulas2018-12-184-10/+10
* Refactor - Consistent function and variable namePierre Sassoulas2018-12-183-47/+53
* Refactor - get_message_definition returning a listPierre Sassoulas2018-12-183-41/+67
* Exempt starred unpacking from ``*-not-iterating`` Python 3 checksClaudiu Popa2018-12-182-0/+9
* Make ``compare-to-zero`` less zealous by checking against equality and identityClaudiu Popa2018-12-143-9/+7
* Exempt ``yield from`` from ``*-not-iterating`` Python 3 checks.Claudiu Popa2018-12-142-0/+10
* ``no-member`` is emitted for enums when they lack a memberClaudiu Popa2018-12-113-4/+24
* Add ``no-else-raise`` warning (R1720) (#2636)Jim Robertson2018-12-114-7/+149
* Fix false positive Non-iterable value with async comprehensions (#2638)Pablo Galindo2018-12-112-3/+16
* Fix zip-builtin-not-iterating false positive with OrderedDict (#2634)sbagan2018-12-102-0/+2
* Fix incorrect generation of ``no-else-raise`` warnings (R1705) (#2618)Jim Robertson2018-12-075-24/+53
* Fix false positive with `not-async-context-manager` caused by not understandi...Claudiu Popa2018-12-064-9/+31
* Remove unused imports from checkers/utils.py, including the missing typing.Ty...Claudiu Popa2018-12-042-15/+3
* Fix error caused by the new checkClaudiu Popa2018-11-301-1/+1
* Added ``wrong-exception-operation``Claudiu Popa2018-11-293-0/+48
* Master is now 2.3.0Claudiu Popa2018-11-281-1/+1
* Refactor ``bad-reversed-sequence`` to account for more objects that can defin...Claudiu Popa2018-11-282-2/+19
* Prepare 2.2.2pylint-2.2.2Claudiu Popa2018-11-281-1/+1
* Revert "Replace StopIterationCalls in ForwardSlashChunker with returns."Claudiu Popa2018-11-281-5/+5
* Replace StopIterationCalls in ForwardSlashChunker with returns.Claudiu Popa2018-11-281-5/+5
* Change the ``logging-format-style`` to use name identifier instead of their c...Claudiu Popa2018-11-282-7/+8
* Set _module_pkg on init as well, not just on open. Close #2613Claudiu Popa2018-11-271-0/+1
* Prepare 2.2.1pylint-2.2.1Claudiu Popa2018-11-271-1/+1
* implicit-str-concat-in-sequence: Handling lines with multi-bytes characters -...Lucas Cimon2018-11-266-4/+24
* Prepare 2.2Claudiu Popa2018-11-251-2/+5
* Fixed literal-comparison for the case of 0 and 1 (#2601)Sergei Lebedev2018-11-233-3/+17
* Fix typo in msg description (#2548)Mike Miller2018-10-111-1/+1
* Consider ``range()`` objects for ``undefined-loop-variable`` leaking from ite...Claudiu Popa2018-10-116-22/+41
* Adding implicit-str-concat-in-sequence check (#1655)Lucas Cimon2018-10-1019-52/+173
* New option: logging-format-style for logging checker (#2521)Alan Chan2018-10-045-101/+139