summaryrefslogtreecommitdiff
path: root/pylint/checkers/classes.py
Commit message (Expand)AuthorAgeFilesLines
* Fix crash for ``protected-access`` on (outer)-class traversal (#5305)Daniël van Noord2021-11-151-1/+1
* Remove redundant brackets (#5300)Marc Mueller2021-11-131-1/+1
* Add checker `using-final-decorator-in-unsupported-version` (#5165)Mark Byrne2021-11-091-5/+12
* Fix crash on checking private members on ``__class__``Daniël van Noord2021-11-051-6/+10
* Fix ``protected-access`` for attributes and methods of nested classes (#5232)Daniël van Noord2021-10-311-1/+15
* Clean up some useless-super-delegation logic (#5193)Samuel Freilich2021-10-261-61/+45
* Add ``mixin-class-rgx`` option (#5203)Daniël van Noord2021-10-251-1/+4
* PR #5157 followup (#5192)Nick Pesce2021-10-211-10/+10
* Fix useless-super-delegation false positive when default keyword argument is ...Nick Pesce2021-10-191-58/+26
* Add checkers for typing.final for Python version 3.8 or later (#5133)Mark Byrne2021-10-101-0/+35
* Fix return type checkers calls on ellipses functions (#5107)Daniël van Noord2021-10-061-1/+6
* [pre-commit.ci] pre-commit autoupdate (#5082)pre-commit-ci[bot]2021-09-281-2/+2
* Spelling and grammar fixesVille Skyttä2021-09-171-7/+7
* Bump pylint to 2.11.0, update changelogv2.11.0Pierre Sassoulas2021-09-161-1/+4
* Remove most `typing.cast()` calls (#4995)Daniël van Noord2021-09-151-5/+1
* Fix false positive ``unused-private-member`` for accessing attributes in a cl...yushao22021-09-141-5/+9
* Fix no-self-use and docparams extension for async functions/methods (#4986)SupImDos2021-09-111-0/+2
* fix false positive W0238 with private staticmethod used from classmethod (#4949)Kayran Schmidt2021-09-071-1/+4
* Refactor various typing related issues (#4940)Daniël van Noord2021-09-031-7/+7
* Fix false positive ``protected-access`` in typing (#4937)Daniël van Noord2021-08-311-2/+6
* Add ``Consider-using-f-string`` checker (#4796)Daniël van Noord2021-08-301-1/+2
* Bump pylint to 2.10.0, update changelogv2.10.0Pierre Sassoulas2021-08-201-1/+1
* ``astroid.const.BUILTINS`` use removed for clarity and so astroid can also re...Pierre Sassoulas2021-08-191-3/+3
* Use alias for astroid.nodes 01 (#4855)Marc Mueller2021-08-171-114/+115
* Revert "Extended consider-using-tuple check to cover 'in' comparisons (#4768)"Marc Mueller2021-08-121-2/+2
* Fix crash for `unused-private-member` when there are nested attributes (#4783)yushao22021-08-011-1/+3
* Fix false-positive of `unused-private-member` with class name (#4782)yushao22021-08-011-11/+21
* update pr based on reviewYu Shao, Pang2021-08-011-7/+2
* Update pr based on reviewYu Shao, Pang2021-08-011-5/+4
* Update pr based on reviewYu Shao, Pang2021-08-011-4/+7
* update PR based on commentsYu Shao, Pang2021-08-011-8/+12
* [unused-private-member] add logic for checking nested functionsYu Shao, Pang2021-08-011-1/+15
* Extended consider-using-tuple check to cover 'in' comparisons (#4768)Marc Mueller2021-07-291-1/+1
* Bump pylint to 2.9.4, update changelogv2.9.4Pierre Sassoulas2021-07-201-0/+1
* Applied suggestions from PR reviewYu Shao, Pang2021-07-181-7/+6
* [unused-private-member] add logic to check for obj attributes whenYu Shao, Pang2021-07-181-1/+21
* [unused-private-member] Handle case of mutating class attrib with `cls`Yu Shao, Pang2021-07-031-3/+8
* Fix copyright links (#4647)Marc Mueller2021-07-011-1/+1
* [unused-private-member] Handle the case using self to access membersPierre Sassoulas2021-07-011-1/+1
* [unused-private-member] Remove boolean in favor of using for/elsePierre Sassoulas2021-07-011-18/+8
* [unused-private-member] Create functions for each part of the checkPierre Sassoulas2021-07-011-5/+6
* [unused-private-member] Remove a check that is done later anywayPierre Sassoulas2021-06-301-5/+1
* [unused-private-member] Handle the case with Call nodePierre Sassoulas2021-06-301-4/+19
* [unused-private-member] Handle the 'None' case for attribute expressionPierre Sassoulas2021-06-301-0/+2
* [unused-private-member] Remove boolean in favor of using for/elsePierre Sassoulas2021-06-301-7/+3
* Add typing in '_check_unused_private_members''s for loopsPierre Sassoulas2021-06-301-1/+3
* Bump pylint to 2.9.0-dev1, update changelogPierre Sassoulas2021-06-171-0/+2
* Fix existing codeMarc Mueller2021-06-101-2/+2
* Update name for consider-using-namedtuple to include dataclass (#4536)Marc Mueller2021-06-021-1/+1
* Add new checker consider-using-namedtuple (#4517)Marc Mueller2021-05-311-1/+1