summaryrefslogtreecommitdiff
path: root/pylint/checkers
Commit message (Expand)AuthorAgeFilesLines
...
* Fix a false negative for 'missing-parentheses-for-call-in-test'Pierre Sassoulas2023-02-051-13/+10
* Fix grammatical error in explanation of `global-statement (W0603)` (#8108)R. N. West2023-02-021-3/+3
* [crash] Fix crashes on python interpreter < 3.9 (#8163)Pierre Sassoulas2023-02-021-1/+1
* Update docs for `global-variable-not-assigned` (#8151)Dani Alcala2023-02-011-6/+17
* Fix false positive for `use-maxsplit-arg` with custom split (#8114)yushao22023-01-301-0/+5
* Tighten design constraints (#8115)Nick Drozd2023-01-2812-5/+24
* Add `--allow-reexport-from-package` option (#8124)Marc Mueller2023-01-281-2/+20
* feat(6489): implement `positional-only-arguments-expected` checker (#8121)yushao22023-01-281-1/+40
* Add `consider-refactoring-into-while-condition` checker (#8021)yushao22023-01-272-3/+57
* Add tests to improve coverage (#8096)Dani Alcala2023-01-263-13/+7
|\
| * [pre-commit.ci] auto fixes from pre-commit.com hookspre-commit-ci[bot]2023-01-251-3/+1
| * Update pylint/checkers/base_checker.pyDani Alcala2023-01-251-1/+1
| * deprecate BaseChecker.get_message_definitionclavedeluna2023-01-241-1/+9
| * remove short-circuit on Enumclavedeluna2023-01-241-10/+1
| * add test for Uninferableclavedeluna2023-01-241-3/+0
* | Update disallowed-name to flag module-level variables (#7808)Dani Alcala2023-01-251-2/+14
* | Fix `missing-kwoa` FP with With statements (#8101)Dani Alcala2023-01-241-2/+11
|\ \ | |/ |/|
| * add inferenceclavedeluna2023-01-231-8/+7
| * fix no-kwoa for any with callsclavedeluna2023-01-231-7/+12
| * fix no-kwoa for one with callclavedeluna2023-01-231-1/+6
* | [doc] Add details and related links for bare/broad-except (#8077)Pierre Sassoulas2023-01-241-4/+13
* | [subprocess-run-check] Add the proper confidencePierre Sassoulas2023-01-231-1/+2
* | [subprocess-run-check] Better rationale and messagePierre Sassoulas2023-01-231-4/+5
|/
* Fix FP for `used-before-assignment` when reimporting name used in type annota...Jacob Walls2023-01-231-1/+5
* Fix `consider-using-augmented-assign` nested attribute access (#8088)Marc Mueller2023-01-201-17/+1
* Fix invalid-name for typing_extensions.TypeVar (#8089)Marc Mueller2023-01-201-2/+7
* pointless-exception-statement: filter call inference for better performance o...James Addison2023-01-201-3/+12
* Better regex for private attribute check (#8081)Marc Mueller2023-01-191-1/+1
* Fixed a crash when inferring a value and using its qname on a slice (#8070)Pierre Sassoulas2023-01-182-3/+8
* [style] Limit line length and complexity using flake8 (#8064)Pierre Sassoulas2023-01-162-17/+37
* Fixes false positive for `try-except-raise` with multiple exceptions in one e...fly2023-01-121-1/+1
* [consider-using-augmented-assign] Do not warn for non-commutative operators (...Pierre Sassoulas2023-01-091-1/+6
* Fix `used-before-assignment` false positive for walrus operators in ifs (#8029)Zen Lee2023-01-081-3/+10
* Add new check "pointless-exception-statement" (#7939)James Addison2023-01-071-1/+16
* [style] Use default 'dummy-variable-rgx' and 'ignored-argument-names' (#8014)Pierre Sassoulas2023-01-021-3/+0
* class attrs should not emit assigning-non-slot msg (#7987)Dani Alcala2022-12-302-7/+21
* [consider-using-sys-exit] Better rationale and added confidencePierre Sassoulas2022-12-281-3/+4
* [pre-commit] Upgrade to black 23.1a1 with 2023's formatting (#7965)Pierre Sassoulas2022-12-2711-14/+3
* Fix `use-sequence-for-iteration` when unpacking a set with `*` (#7975)Dani Alcala2022-12-262-4/+25
* Fix `used-before-assignment` if conditional imports guarded again when used (...Jacob Walls2022-12-251-0/+1
* ``consider-using-with`` now triggers for ``pathlib.Path.open`` (#7968)Gideon2022-12-211-0/+1
* Fix ``no-else-return false Negative for try/except/else pattern (#7888)Dani Alcala2022-12-121-7/+36
* Fix unreleased false positives with `used-before-assignment` (#7921)Jacob Walls2022-12-121-11/+6
* Prevent `used-before-assignment` in pattern matching with a guard (#7922)Jacob Walls2022-12-121-0/+3
* Emit `used-before-assignment` for further imports guarded by TYPE_CHECKING (#...Jacob Walls2022-12-101-7/+2
* Fixes ``method-cache-max-size-none`` false positive (#7908)Dani Alcala2022-12-094-9/+15
* Cut oldstyle checksNick Drozd2022-11-303-18/+3
* Define Protocol as abstract to prevent abstract-method FP (#7839)Dani Alcala2022-11-302-15/+18
* Clearer ``reimported`` and new ``shadowed-import`` messages for aliased impor...Dani Alcala2022-11-301-9/+30
* ``multiple-statements`` no longer triggers for function stubs using inlined `...Gideon2022-11-291-11/+5