summaryrefslogtreecommitdiff
path: root/tests
Commit message (Expand)AuthorAgeFilesLines
* Make ``self-cls-assignment`` check tuple assignment (#5268)Daniël van Noord2021-11-072-4/+7
* Fix crash on checking private members on ``__class__``Daniël van Noord2021-11-051-0/+9
* Remove unwanted non-breaking whitespaces in comment (#5256)Pierre Sassoulas2021-11-041-1/+1
* Inspection for `with threading.Lock():` (#5245)Martin2021-11-032-0/+69
* Fix ``protected-access`` for attributes and methods of nested classes (#5232)Daniël van Noord2021-10-312-15/+91
* Allow no type in Numpy param docstrings for ``mising-param-doc`` (#5231)Daniël van Noord2021-10-311-2/+8
* Fix incorrect ``consider-using-ternary`` when condition is inferable as False...Arianna Y2021-10-292-0/+7
* Migration to pytest from unittest for BaseChecker testsPierre Sassoulas2021-10-271-37/+35
* Create a new file for BaseChecker unit testsPierre Sassoulas2021-10-272-61/+69
* Fix deprecation 'check function will only accept sequence of string' (#5218)Pierre Sassoulas2021-10-272-14/+24
* Fix the deprecation of set_output in our code (#5209)Pierre Sassoulas2021-10-271-4/+14
* Update tests/data/property_pattern.pynozzy123nozzy2021-10-261-5/+0
* Modify sources along with results of pr review.Takahide Nojima2021-10-2615-41/+64
* Fix exception of pyreverse in handling property function within a class.Takahide Nojima2021-10-262-0/+53
* Add control flow check for ``undefined-variable`` in ``if ... else``Daniël van Noord2021-10-262-1/+52
* Add configuration option ``exclude-too-few-public-methods`` (#5191)Mike Fiedler2021-10-264-0/+37
* Create a OLD_DEFAULT_PYLINT_HOME constantsPierre Sassoulas2021-10-261-2/+3
* Add tests for assignment expressions in function defaults (#5188)Daniël van Noord2021-10-256-1/+79
* Use backticks for any-all suggestion (#5207)Nick Drozd2021-10-252-7/+15
* Add ``mixin-class-rgx`` option (#5203)Daniël van Noord2021-10-253-0/+66
* Add extension checker that suggests any/all statements from for loops (#5196)Arianna Y2021-10-254-0/+310
* Normalize input of ``ignore-paths`` for all path types (#5201)Daniël van Noord2021-10-242-34/+104
* Fix regression for ``_is_only_type_assignment`` (#5163)Daniël van Noord2021-10-235-37/+112
* Make ``used-before-assignment`` consider classes in method annotation and def...Daniël van Noord2021-10-237-10/+74
* Fix use-implicit-booleaness-not-comparison crash (#5176)Jaehoon Hwang2021-10-233-31/+91
* Fix test decorator for `PyLinter` options (#5195)Daniël van Noord2021-10-221-0/+0
* Fix useless-super-delegation false positive when default keyword argument is ...Nick Pesce2021-10-192-18/+38
* Fix double emitting of ``not-callable`` on inferrable ``properties``Daniël van Noord2021-10-192-8/+19
* Fix asterisks parsing of ``mising-param-doc`` (#5175)Daniël van Noord2021-10-182-11/+47
* Make ``undefined-variable`` check line numbers of metaclass parametersDaniël van Noord2021-10-182-0/+11
* Add test for #4021Daniël van Noord2021-10-182-8/+21
* Fix ``missing-function-docstring`` not checking ``__init__`` (#5147)Daniël van Noord2021-10-171-0/+46
* Merge ``MessagesHandlerMixIn`` into ``PyLinter`` (#5136)Daniël van Noord2021-10-171-1/+0
* Fix ``relative-beyond-top-level`` false positiveDaniël van Noord2021-10-1716-0/+60
* pyreverse - Add project modules to sys.path (#4856)Mark Byrne2021-10-173-17/+48
* From Python 3.8 onwards classes inheriting from dict are reversible (#5169)Tim Martin2021-10-175-9/+25
* Add a warning ``use-implicit-booleaness-not-comparison`` for comparison with ...Jaehoon Hwang2021-10-1711-51/+245
* Consider Enums when checking for duplicate dictionary keys (#5155)jaydesl2021-10-162-3/+18
* Fix py-version usage in typing extension tests (#5161)Marc Mueller2021-10-156-8/+8
* Use py-version for alternative union syntax check (#5160)Marc Mueller2021-10-153-2/+9
* Make ``undefined-variable`` flag type annotation without value assignment (#5...Daniël van Noord2021-10-152-32/+68
* Improve documentation of ``docparams`` extension and fix tests (#5095)Daniël van Noord2021-10-141-1/+83
* Add ``using-f-string-in-unsupported-version`` checker (#5139)Daniël van Noord2021-10-113-0/+9
* Properly identify undocumented parameters and add new message called missing-...Konstantina Saketou2021-10-108-12/+142
* Move message adding functions from ``MessagesHandlerMixIn``Daniël van Noord2021-10-101-5/+5
* Add checkers for typing.final for Python version 3.8 or later (#5133)Mark Byrne2021-10-106-0/+39
* Rename `len-as-condition` to `use-implicit-booleaness-not-len` (#5132)Jaehoon Hwang2021-10-104-55/+59
* Add support for `ModuleNotFoundError` Python 3.6+ builtin-exception (#5106)Samuel FORESTIER2021-10-094-9/+25
* Reorganize regression tests (#5130)Marc Mueller2021-10-084-2/+1
* Add test for typing alias in isinstance calls (#5089)Marc Mueller2021-10-072-0/+28