summaryrefslogtreecommitdiff
path: root/pylint/checkers
Commit message (Expand)AuthorAgeFilesLines
* Bump astroid to 3.0.0a1 (#8626)Marc Mueller2023-04-253-3/+9
* Drop support for Python 3.7 (#8609)Marc Mueller2023-04-2414-87/+15
* Use astroid.Context enum (#8611)Marc Mueller2023-04-241-5/+5
* Fix `FunctionDef` isinstance checks (#8607)Marc Mueller2023-04-233-7/+7
* Optimize `is_trailing_comma()` (#8606)Jacob Walls2023-04-231-4/+5
* Cache `class_is_abstract()`Jacob Walls2023-04-231-0/+2
* Modified all occurences of "a f-string" to "an f-string"Elazrod562023-04-202-3/+3
* Minor refactor on type annotation (#8587)Zen Lee2023-04-181-1/+3
* Fix FP `used-before-assignment` for statements guarded under same test (#8581)Jacob Walls2023-04-161-0/+35
* Improve output of `consider-using-generator` message for `min()` calls with `...Jacob Walls2023-04-161-1/+5
* Cope with changes to `Starred` constructorJacob Walls2023-04-161-1/+9
* Fix `used-before-assignment` TYPE_CHECKING false negatives (#8431)Zen Lee2023-04-151-20/+62
* Fix false negative for no-value-for-parameter: positional-only args and **kwa...Mark Byrne2023-04-141-0/+5
* Disable Info linters in definition instead of Run class (#8576)Matus Valo2023-04-141-0/+1
* Fix false positive for ``keyword-arg-before-vararg`` (#8571)Mark Byrne2023-04-131-1/+7
* Fix `unused-import` to check`dummy-variables-rgx` (#8566)RSTdefg2023-04-121-4/+11
* Fix false positive for ``positional-only-arguments-expected`` when a function...Mark Byrne2023-04-091-0/+2
* Also check the typealias naming style for TypeAlias variables defined in func...Yilei "Dolee" Yang2023-04-071-1/+6
* Fix isinstance-second-argument-not-valid-type for union types with NoneRogdham2023-04-071-5/+8
* Fix typelias `invalid-name` false positives for Union variables without assig...Yilei "Dolee" Yang2023-04-071-4/+1
* Do not emit `logging-not-lazy` for explicitly concatenated strings. (#8546)Yilei "Dolee" Yang2023-04-071-1/+14
* Fix check unused arguments false positive bug (#8542)Théo Battrel2023-04-061-0/+10
* Handle patterns in ignored-modules when checking for no-name-in-module (#7579)Daniel Mouritzen2023-04-034-46/+29
* Don't use removed function from ``astroid`` (#8525)Daniël van Noord2023-04-011-5/+11
* [cleanup] Upgrade more doc following the PyCQA migrationPierre Sassoulas2023-03-312-2/+2
* Fix `used-before-assignment` false positive for `TYPE_CHECKING` elif branch i...Zen Lee2023-03-302-157/+119
* [PyCQA migration] Upgrade links to the repositories in code and doc (#8514)Pierre Sassoulas2023-03-2947-111/+112
* Allow integers in TypeAlias names (#8488)Stephane Odul2023-03-281-1/+3
* Fix `unnecessary-lambda` false positive for lambdas using its parameters in t...cherryblossom2023-03-281-0/+8
* Don't consider ``Union`` to always be a type alias (#8489)Daniël van Noord2023-03-231-1/+7
* [deprecation] Remove duplicated utils typing guards check (#8475)Pierre Sassoulas2023-03-221-43/+0
* Upgrade TODO for pylint 2.X to pylint 3.0 (#8480)Pierre Sassoulas2023-03-221-1/+1
* Fix incorrect preferred-modules matchesDaniël van Noord2023-03-211-1/+9
* Add explicit 'stack_level' keyword in Deprecation/User warningsPierre Sassoulas2023-03-211-0/+2
* [ruff] Add RUF specific rules and autofix (#8449)Pierre Sassoulas2023-03-145-6/+6
* [cyclic-import] Break cycle between pylint.checkers.util / variables (#8448)Pierre Sassoulas2023-03-142-24/+21
* Deprecate redundant type checking guard utils (#8433)Jacob Walls2023-03-123-20/+41
* Add Python 3.8+ `asyncSetUp` to "defining-attr-methods" list (#8403)Samuel FORESTIER2023-03-111-1/+7
* Fix a crash when `TYPE_CHECKING` is used without importing it (#8435)Jacob Walls2023-03-111-1/+4
* Clear LRU caches on pylint utilities (#8420)Jacob Walls2023-03-101-1/+20
* [overgeneral-exceptions] Only handle qualified names (#8411)Pierre Sassoulas2023-03-091-17/+12
* Remove deprecated functions and classes (#8409)Daniël van Noord2023-03-093-86/+0
* [FileState] Make Pylinter.current_name and msg_store non nullablePierre Sassoulas2023-03-081-1/+1
* [__implements__] Remove everything related to the rejected PEP245 (#8404)Pierre Sassoulas2023-03-081-26/+5
* Remove all old code related to ``optparse`` config parsing. (#8405)Daniël van Noord2023-03-081-5/+3
* [deprecation] Remove ``get_message_definitions`` from ``BaseChecker`` (#8401)Pierre Sassoulas2023-03-081-14/+0
* Bump pylint to 2.17.0, update changelog (#8395)Pierre Sassoulas2023-03-072-2/+2
* Use UninferableBase instead of UninferableDaniel van Noord2023-03-0713-72/+78
* Upgrade to astroid 2.15.0 (#8387)Pierre Sassoulas2023-03-072-2/+2
* Accept values of the form ``<class name>.<attribute name>`` for the `exclude-...Mark Byrne2023-03-031-6/+17