summaryrefslogtreecommitdiff
path: root/pylint
Commit message (Expand)AuthorAgeFilesLines
* Bump pylint to 2.13.5, update changelogv2.13.5Pierre Sassoulas2022-04-061-1/+1
* Add ``subclassed-final-class`` message to the ``check_messages`` decorator (#...Mark Byrne2022-04-061-0/+1
* Prevent `used-before-assignment` for assignment via nonlocal after type annot...Jacob Walls2022-04-061-0/+14
* Only emit ``lru-cache-decorating-method`` when ``maxsize`` is ``None`` (#6181)Daniël van Noord2022-04-062-16/+18
* Fix false positive for ``unused-import`` when disabling both ``used-before-as...Andreas Finkler2022-04-041-9/+0
* Fix handling of "for x in x" homonyms (#6154)Jacob Walls2022-04-041-2/+5
* Account for more node types in handling of except block homonyms with compreh...Jacob Walls2022-04-041-63/+54
* ``redefined-slots-in-subclass`` crash when slot type is neither a string or c...Mark Byrne2022-04-041-2/+3
* Fix E1102 / ``not-callable`` false positive for property that returns a lambd...Tushar Sadhwani2022-04-041-10/+12
* Narrow the scope of the ``unnecessary-ellipsis`` checker (#6081)Mark Byrne2022-04-041-13/+3
* Bump pylint to 2.13.4, update changelogv2.13.4Pierre Sassoulas2022-03-311-1/+1
* Fix crash in ``super-init-not-called`` checker (#6043)Daniël van Noord2022-03-311-5/+6
* Remove assumption of direct parentage in `used-before-assignment` homonym han...Jacob Walls2022-03-311-10/+30
* Fix false positive for the ``unnecessary-ellipsis`` checker (#6039)Mark Byrne2022-03-311-0/+1
* Fix crash for ``unneccessary-ellipsis`` checker (#6038)Mark Byrne2022-03-311-1/+7
* Bump pylint to 2.13.3, update changelogv2.13.3Pierre Sassoulas2022-03-291-1/+1
* Change 'nonexistent-operator' to allow repeated unary ops (with space or pare...Sergey B Kirpichev2022-03-291-0/+1
* `unnecessary-ellipsis` false positive: allow ellipsis as default argument (#6...Joe Young2022-03-291-1/+4
* Fix crash on unbalanced tuple unpackingJacob Walls2022-03-291-0/+2
* Bump pylint to 2.13.2, update changelogv2.13.2Pierre Sassoulas2022-03-271-1/+1
* Better error message when we cant write the crash files (#5987)Pierre Sassoulas2022-03-272-7/+9
* Fix false negative for `protected-access` on functions (#5990)Jacob Walls2022-03-271-1/+4
* Fix false positive for `superfluous-parens` for `return (a or b) in iterable`...Jacob Walls2022-03-271-13/+10
* Bump pylint to 2.13.1, update changelogv2.13.1Pierre Sassoulas2022-03-261-1/+1
* Fix issue #5969 for `modified_iterating-list` (#5986)orSolocate2022-03-261-2/+3
* Don't emit broken typing errors inside TYPE_CHECKING blocks (#5984)Marc Mueller2022-03-264-18/+30
* Loosen TypeVar name pattern (#5983)Marc Mueller2022-03-261-1/+1
* Fix false positive for `unused-argument` where nested function uses parent ar...Jacob Walls2022-03-261-4/+15
* Don't emit `raising-bad-type` when there is ambiguity (#5968)Jacob Walls2022-03-261-9/+6
* Fix nonlocal in try block regression for `used-before-assignment` (#5966)Jacob Walls2022-03-261-0/+7
* Bump pylint to 2.13.0, update changelogv2.13.0Pierre Sassoulas2022-03-241-1/+1
* [cleanup] Remove unused code in pylint.checker.base following refactorPierre Sassoulas2022-03-242-34/+3
* [refactor] Create a file for the BasicChecker in pylint.checker.basePierre Sassoulas2022-03-242-812/+818
* [refactor] Create a file for the BasicErrorChecker in pylint.checker.basePierre Sassoulas2022-03-242-557/+573
* [refactor] Create a package for the NameChecker in pylint.checker.basePierre Sassoulas2022-03-244-732/+813
* [refactor] Create a file for the DocstringChecker in pylint.checker.basePierre Sassoulas2022-03-242-189/+211
* [refactor] Create a file for the PassChecker in pylint.checker.basePierre Sassoulas2022-03-242-20/+29
* [refactor] Create files for comparison checker in pylint.checker.basePierre Sassoulas2022-03-242-285/+297
* [refactor] Create a file for _BasicChecker in pylint.checkersPierre Sassoulas2022-03-242-6/+15
* [refactor] Create a package in order to be able to burst base.pyPierre Sassoulas2022-03-241-0/+0
* Create a ``TypeVar`` style for ``invalid-name`` (#5894)Daniël van Noord2022-03-243-32/+63
* Make ``arguments-differ`` check extra parameters for default values (#5539)Daniël van Noord2022-03-241-7/+37
* Add documentation for access-member-before-definition (#5958)Daniël van Noord2022-03-241-1/+5
* Add bad-open-mode and unspecified-encoding documentation (#5954)Daniël van Noord2022-03-241-1/+1
* Add a pre-commit hook to check the copyright noticePierre Sassoulas2022-03-24138-134/+180
* Simplify hard to maintain copyright noticePierre Sassoulas2022-03-24126-1314/+128
* ``pyreverse``: better error messages for unsupported file formats (#5951)Andreas Finkler2022-03-223-15/+52
* Fix #4590: `used-before-assignment` false positive for class definition in fu...Jacob Walls2022-03-211-7/+21
* Add missing __magic__ methods to `_SPECIAL_METHODS_PARAMS` (#5941)Joe Young2022-03-211-0/+2
* Fix pyreverse type hints for methods returning None (#5916)Téo Bouvard2022-03-191-7/+6