summaryrefslogtreecommitdiff
path: root/pylint/checkers
Commit message (Expand)AuthorAgeFilesLines
* Fix useless-super-delegation false positive when default keyword argument is ...Nick Pesce2021-10-191-58/+26
* Fix double emitting of ``not-callable`` on inferrable ``properties``Daniël van Noord2021-10-191-1/+2
* Make ``undefined-variable`` check line numbers of metaclass parametersDaniël van Noord2021-10-181-6/+13
* Refactor Variable checker to use less argument in function (#5167)Pierre Sassoulas2021-10-171-47/+50
* Async context manager typo (#5164)Youngsoo Sung2021-10-171-1/+1
* Fix ``missing-function-docstring`` not checking ``__init__`` (#5147)Daniël van Noord2021-10-171-0/+2
* Merge ``MessagesHandlerMixIn`` into ``PyLinter`` (#5136)Daniël van Noord2021-10-171-4/+10
* From Python 3.8 onwards classes inheriting from dict are reversible (#5169)Tim Martin2021-10-171-3/+7
* Add a warning ``use-implicit-booleaness-not-comparison`` for comparison with ...Jaehoon Hwang2021-10-175-7/+116
* Consider Enums when checking for duplicate dictionary keys (#5155)jaydesl2021-10-161-3/+7
* Use py-version for alternative union syntax check (#5160)Marc Mueller2021-10-151-2/+5
* Make ``undefined-variable`` flag type annotation without value assignment (#5...Daniël van Noord2021-10-151-0/+18
* Create new ``UnsupportedVersionChecker`` checker class (#5148)Daniël van Noord2021-10-132-13/+49
* Add ``using-f-string-in-unsupported-version`` checker (#5139)Daniël van Noord2021-10-111-0/+16
* Add checkers for typing.final for Python version 3.8 or later (#5133)Mark Byrne2021-10-101-0/+35
* Rename `len-as-condition` to `use-implicit-booleaness-not-len` (#5132)Jaehoon Hwang2021-10-102-12/+20
* Add support for `ModuleNotFoundError` Python 3.6+ builtin-exception (#5106)Samuel FORESTIER2021-10-091-5/+19
* Refactor ``LinterStats`` (#5074)Daniël van Noord2021-10-077-141/+166
* Add guard helper functions from astroid (#5122)Marc Mueller2021-10-072-3/+38
* Fix return type checkers calls on ellipses functions (#5107)Daniël van Noord2021-10-062-1/+16
* Fix a crash if ``str.format`` is referenced without being called (#5109)Tim Martin2021-10-061-2/+2
* Improve node info for invalid-name (#5094)Marc Mueller2021-10-051-4/+4
* Fix crash with AssignAttr in TYPE_CHECKING blocks (#5118)Marc Mueller2021-10-051-1/+3
* Improve and flatten ``unused-wildcard-import`` message (#5110)Daniël van Noord2021-10-041-2/+18
* Fix false-positive ``useless-suppression`` for ``line-too-long`` (#5077)Daniël van Noord2021-09-281-5/+8
* Fix ``invalid-name`` for overwritten base ``object`` methods (#5079)Daniël van Noord2021-09-281-1/+4
* [pre-commit.ci] pre-commit autoupdate (#5082)pre-commit-ci[bot]2021-09-289-11/+11
* Add ``no-implicit-optional`` flag to ``mypy`` (#5075)Daniël van Noord2021-09-263-5/+5
* Small py-version improvements (#5069)Marc Mueller2021-09-251-1/+1
* Fix loop in too-many-ancestors when an inheritance cycle is inferred (#5062)Andrew Haigh2021-09-241-6/+19
* Fix ``useless-suppression`` for ``wrong-import-order`` (#5063)Daniël van Noord2021-09-231-6/+21
* Type `add_message` and add `MessageLocationTuple` (#5050)Daniël van Noord2021-09-211-6/+12
* Fix false-positive undefined-variable with Lambda, IfExp, and := (#5044)Marc Mueller2021-09-211-2/+6
* Make ``consider-using-f-string`` skip `format()` with backslash (#5055)Daniël van Noord2021-09-211-0/+7
* Fix bug with cell-var-from-loop and kw_defaults (#5045)David Liu2021-09-201-4/+9
* Use node_ancestors to get rid of some while-loops (#5005)Nick Drozd2021-09-183-28/+15
* Require Python 3.6 for consider f-string check (#5024)Marc Mueller2021-09-171-5/+13
* Fix ``unspecified-encoding`` for ``Path.read_text()``Daniël van Noord2021-09-171-3/+8
* Spelling and grammar fixesVille Skyttä2021-09-177-16/+16
* Fix ``unspecified-encoding`` for `Path()`Daniël van Noord2021-09-161-3/+10
* Bump pylint to 2.11.0, update changelogv2.11.0Pierre Sassoulas2021-09-1618-5/+23
* Add typing in ``pylint.reporters`` (#5004)Pierre Sassoulas2021-09-162-2/+2
* Move methods to `BaseLayout` (#5015)Daniël van Noord2021-09-161-2/+4
* Add typing to all calls to ``self.stats`` (#4973)Daniël van Noord2021-09-157-30/+57
* Remove most `typing.cast()` calls (#4995)Daniël van Noord2021-09-153-17/+3
* Change lines to lists (#5009)Daniël van Noord2021-09-142-5/+5
* Fix false positive ``unused-private-member`` for accessing attributes in a cl...yushao22021-09-141-5/+9
* Make consider-iterating-dictionary consider membership check (#4997)Daniël van Noord2021-09-141-11/+18
* Fix bad node given to a message and false positive invalide format for ``__al...Pierre Sassoulas2021-09-131-5/+4
* Add typing to most reference of ``stream``Daniël van Noord2021-09-132-12/+29