summaryrefslogtreecommitdiff
path: root/pylint
Commit message (Expand)AuthorAgeFilesLines
* Pylint 2.5.0 requires astroid 2.4+ to work correctlypylint-2.5.0Claudiu Popa2020-04-271-1/+1
* Fix formattingClaudiu Popa2020-04-271-0/+1
* Revert the use of astroid 2.4 until 2.4 itself is releasedClaudiu Popa2020-04-271-1/+1
* Add missing copyright annotations for the past releasesClaudiu Popa2020-04-2757-123/+411
* Prepare 2.5.0 release for pylintClaudiu Popa2020-04-271-2/+3
* Replace logging-format-formatting with the valid logging-format-interpolationClaudiu Popa2020-04-271-1/+1
* Brought back logging-fstring-interpolationAshley Whetter2020-04-271-40/+62
* ``unidiomatic-typecheck`` is no longer emitted for ``in`` and ``not in`` oper...Claudiu Popa2020-04-271-1/+1
* Add back License not handled by a scriptPierre Sassoulas2020-04-274-0/+12
* More localized disable for broad-except in PylinterPierre Sassoulas2020-04-261-4/+2
* [lint package refactor] Create a file for the Run classPierre Sassoulas2020-04-262-407/+409
* [lint package refactor] Create a file for pylinterPierre Sassoulas2020-04-262-1170/+1179
* [lint package refactor] Create a file for check_parallelPierre Sassoulas2020-04-262-104/+115
* [lint package refactor] Create a file for the utility functionsPierre Sassoulas2020-04-262-72/+79
* [lint package refactor] Create a file for the report functionsPierre Sassoulas2020-04-262-72/+78
* Refactor - Move the content of lint.py in its own packagePierre Sassoulas2020-04-263-2/+2
* Fix a typo in a JsonReporter docstringPierre Sassoulas2020-04-263-4/+1
* Fix a typo in TextReporterPierre Sassoulas2020-04-261-2/+2
* Fix false negative for undefined-variable when using class attribute in compr...Andrew Simmons2020-04-221-7/+35
* Fix false positive for ``undefined-variable`` when using class attribute as r...Andrew Simmons2020-04-221-0/+4
* Fix false positive for ``undefined-variable`` when using class attribute in d...Andrew Simmons2020-04-221-12/+21
* Fix false-negative cases for trailing-comma-tupleYang Yang2020-04-191-1/+1
* Refactor the dict.get detection code to be easier to understandClaudiu Popa2020-04-031-18/+41
* Don't HTML-escape JSON messages (#3467)Clément Pit-Claudel2020-04-031-2/+1
* Positional-only arguments are taken in account for ``useless-super-delegation``Claudiu Popa2020-03-282-6/+14
* Pick a different name than slice to avoid overshadowing a builtinClaudiu Popa2020-03-271-5/+5
* Properly unwrap astroid.Index on Python 3.9+Claudiu Popa2020-03-271-4/+6
* Do not access Subscript.slice.value directly on Python 3.9Claudiu Popa2020-03-271-1/+5
* Check for invalid sequence and slice index from visit_subscriptClaudiu Popa2020-03-271-21/+23
* Fix R1721: Unnecessary use of a comprehensionPierre Sassoulas2020-03-271-1/+1
* Fix overzealous `arguments-differ` for variadicsmattlbeck2020-03-271-15/+25
* Print the fully qualified name of the extensionClaudiu Popa2020-03-252-10/+5
* Add --list-extensions commandanubh-v2020-03-252-1/+34
* Allow used variables to be properly consumed when different checks are enable...Claudiu Popa2020-03-251-8/+15
* Recognize classes that explicitly inherit from `ABC` or define `metaclass=ABC...Slavfox2020-03-241-0/+12
* pyupgrade: automated removal of python2 constructsAnthony Sottile2020-03-2456-103/+32
* Fix isort issueClaudiu Popa2020-03-131-0/+1
* Do not use pkginfo.modname any longerClaudiu Popa2020-03-131-2/+1
* Add regression test for unused-argument and raiseClaudiu Popa2020-03-131-2/+3
* Add more tests for loading a malitious astroid fileClaudiu Popa2020-03-121-1/+0
* Continue adding the current working directory to sys.path with `fix_import_path`Claudiu Popa2020-03-121-30/+40
* Pass an additional search path to modutils.modpath_from_file and friendsClaudiu Popa2020-03-122-4/+14
* Move _get_python_path in utils to be accessible by that file as wellClaudiu Popa2020-03-122-15/+15
* Replace individual member imports with `os` in utils fileClaudiu Popa2020-03-121-18/+21
* Do not add the current directory to `sys.path` any longerClaudiu Popa2020-03-121-2/+6
* Remove obsolete explicit conversion to integer of a string formatting keynameClaudiu Popa2020-03-111-3/+0
* Add exclude_platforms to functional tests and use it for non_ascii_name checkClaudiu Popa2020-03-112-1/+9
* Allow non-ASCII characters in identifiers in the invalid-name rule and add no...bernie gray2020-03-112-37/+62
* Adjust some annotations and refactor small checksClaudiu Popa2020-03-082-12/+13
* Correct some types and guard against unexpected values in classes checkersClaudiu Popa2020-03-083-5/+8