summaryrefslogtreecommitdiff
path: root/pylint/checkers
Commit message (Expand)AuthorAgeFilesLines
* 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-281-6/+7
* Set _module_pkg on init as well, not just on open. Close #2613Claudiu Popa2018-11-271-0/+1
* implicit-str-concat-in-sequence: Handling lines with multi-bytes characters -...Lucas Cimon2018-11-261-2/+14
* Fixed literal-comparison for the case of 0 and 1 (#2601)Sergei Lebedev2018-11-231-1/+1
* 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-112-1/+16
* Adding implicit-str-concat-in-sequence check (#1655)Lucas Cimon2018-10-1014-50/+115
* New option: logging-format-style for logging checker (#2521)Alan Chan2018-10-043-101/+103
* dict-iter-method and dict-view-method no longer determines if the operand is ...Claudiu Popa2018-10-021-20/+4
* ``deprecated-method`` can use the attribute name for identifying a deprecated...Claudiu Popa2018-10-021-23/+39
* fix compatibility with unreleased changes to stdlib tokenizerMichael Hudson-Doyle2018-10-011-1/+4
* Fix formatting errorsClaudiu Popa2018-09-291-6/+10
* Use ast to handle PEP 328 multi-line importsScott Worley2018-09-291-3/+18
* Don't suggest identity check against the interpreter's True or False builtin ...Claudiu Popa2018-09-291-4/+4
* Change ``unbalanced-tuple-unpacking`` back to a warning.Claudiu Popa2018-09-291-2/+2
* Fix utils.is_subclass_of to be aware of complex hierarchies (#2508)Sushobhit2018-09-281-9/+9
* Move the type check of the target after checking for invalid star assignment ...Claudiu Popa2018-09-251-5/+4
* Fix the lint errorsClaudiu Popa2018-09-251-3/+3
* Handle recursively the count of Starred nodes in assignmentsClaudiu Popa2018-09-241-13/+17
* Make sure that index is defined by assigning it to None before the loopClaudiu Popa2018-09-231-4/+5
* Simplify the code to remove the need for a linter disableClaudiu Popa2018-09-231-1/+4
* Emit ``too-many-starred-assignment`` only when the number of Starred nodes is...Claudiu Popa2018-09-231-4/+13
* No enumerate check in __iter__ (#2505)Ben James2018-09-221-0/+4
* Added check simplifiable-if-expression (#2502)Tomer Chachamu2018-09-201-0/+34
* Remove problematic annotationsClaudiu Popa2018-09-191-10/+4
* ``too-few-public-methods`` is not reported for ``typing.NamedTuple``Claudiu Popa2018-09-181-2/+15
* Move is_dataclass and is_enum_class back to where they are usedClaudiu Popa2018-09-182-59/+56
* Fix mypy errors caused by black autoformatting the type commentsClaudiu Popa2018-09-171-2/+2
* Reformat the code with blackClaudiu Popa2018-09-1721-4786/+6988
* ```too-few-public-methods`` is not reported for dataclasses created with opti...Claudiu Popa2018-09-151-1/+5
* Move is_raising to where it is used and correct its annotationClaudiu Popa2018-09-152-10/+13
* Grammar fixes to docs (#2492)Drew2018-09-151-1/+1
* Remove wrong modules from 'bad-python3-import' (#2454)Aivar Annamaa2018-09-091-2/+2
* Remove useless minversion for Python 2.7Claudiu Popa2018-09-051-12/+6
* Add a new check, ``duplicate-string-formatting-argument``Claudiu Popa2018-09-051-1/+14
* Squash some checks and move some of the aroundClaudiu Popa2018-09-051-6/+3
* Drop the .keys() call, can unpack dictionaries without itClaudiu Popa2018-09-054-8/+7
* Switch to using CallSite to get the arguments and clear the formatting a bitClaudiu Popa2018-09-051-28/+15
* Remove vacuous version checkClaudiu Popa2018-09-051-2/+1
* Switch to a hasattr() call for getting the elts of an inferred valueClaudiu Popa2018-09-051-1/+1
* Make sure that args_elts is defined by defaulting to an empty tupleClaudiu Popa2018-09-051-0/+1
* isinstance accept tuples of tuples so no need to join themClaudiu Popa2018-09-051-2/+2
* Remove extraneous comment and fix the styleClaudiu Popa2018-09-051-6/+2
* ``assignment-from-no-return`` is not emitted for coroutines.Claudiu Popa2018-09-051-1/+2
* ``consider-using-ternary`` and ``simplified-boolean-expression`` no longer em...Claudiu Popa2018-09-051-15/+0
* Added checker for format string type mismatches.Yury Gribov2018-09-043-6/+60
* Disable pylint error locallyClaudiu Popa2018-09-041-1/+1
* Handle ``AstroidSyntaxError`` when trying to import a module.Claudiu Popa2018-09-041-0/+5