summaryrefslogtreecommitdiff
path: root/pylint/checkers/utils.py
Commit message (Expand)AuthorAgeFilesLines
* Sets up copyrighthippo912020-08-201-0/+3
* Switch to isort 5 for pylint's own codeDamien Baty2020-08-181-2/+1
* Fix scoping for function annotations, decorators and base classes (#3713)Andrew Simmons2020-07-121-4/+8
* Add rule raise-missing-fromRam Rachum2020-06-221-0/+18
* Fix exception causes all over the codebaseRam Rachum2020-06-141-5/+5
* Add missing copyright annotations for the past releasesClaudiu Popa2020-04-271-4/+18
* Recognize classes that explicitly inherit from `ABC` or define `metaclass=ABC...Slavfox2020-03-241-0/+12
* pyupgrade: automated removal of python2 constructsAnthony Sottile2020-03-241-3/+1
* Remove obsolete explicit conversion to integer of a string formatting keynameClaudiu Popa2020-03-111-3/+0
* Adjust some annotations and refactor small checksClaudiu Popa2020-03-081-11/+12
* Correct some types and guard against unexpected values in classes checkersClaudiu Popa2020-03-081-1/+1
* Protect `node_frame_class` against looping continuously on UninferableClaudiu Popa2020-03-021-2/+10
* Emit ``unused-argument`` for functions that partially uses their argument lis...Claudiu Popa2020-02-051-10/+3
* Add missing special method names (#3282)Matthijs Blom2019-12-021-6/+5
* ``safe_infer`` can infer a value as long as all the paths share the same type.Claudiu Popa2019-11-271-6/+21
* [formating] Bump black and isortDjailla2019-11-181-5/+5
* Do not exempt bare except from ``undefined-variable`` and similar checksClaudiu Popa2019-11-131-1/+1
* ``typing.overload`` functions are exempted from ``too-many-function-args``Claudiu Popa2019-10-171-4/+6
* `invalid-overridden-method` takes `abc.abstractproperty` in accountClaudiu Popa2019-10-161-2/+0
* Fix ``utils.is_error`` to account for functions returning early.Claudiu Popa2019-09-301-3/+7
* Allow signature mutators to be verified against the name as well as qualified...Claudiu Popa2019-09-231-1/+5
* Remove redundant compatibility code (#3097)Hugo van Kemenade2019-09-121-11/+2
* [checkers.utils] Incompatible return value type (expected List[Any]) (#3049)Pierre Sassoulas2019-08-091-1/+1
* Added a new check, ``invalid-overridden-method``Claudiu Popa2019-07-181-7/+12
* Fix linting and typing errorsClaudiu Popa2019-07-161-2/+2
* Excluded protocol classes from a couple of checks. Close #3002.Claudiu Popa2019-07-161-0/+15
* Fixed false positives for function stubs (#2927)Ashley Whetter2019-05-261-0/+12
* Use explicit astroid imports where implicit ones were being usedClaudiu Popa2019-05-221-2/+2
* Fix a bunch of linting errors from the codebaseClaudiu Popa2019-05-221-8/+3
* Add a function to figure out if a node is a property setter and use it accord...Claudiu Popa2019-05-211-1/+21
* Correct infered to inferredClaudiu Popa2019-05-201-11/+11
* Collapse if/else into ternaryNathan Marrow2019-03-221-4/+1
* Don't recurse in inherit_from_std_exNathan Marrow2019-03-221-7/+10
* Style - Apply isort on all apllicable filesPierre Sassoulas2019-03-201-5/+5
* Include the missing __rfloordiv__. Close #2783Claudiu Popa2019-03-031-0/+1
* Protect against `NonDeducibleTypeHierarchy` when calling semi-private `is_sub...Claudiu Popa2019-02-191-2/+6
* Fixes for linting of new style logging format. (#2713)Svet2019-02-131-11/+11
* Take into account `__class_getitem__` Pascal Corpet2019-02-041-0/+4
* Remove unused imports from checkers/utils.py, including the missing typing.Ty...Claudiu Popa2018-12-041-14/+2
* New option: logging-format-style for logging checker (#2521)Alan Chan2018-10-041-0/+74
* Fix utils.is_subclass_of to be aware of complex hierarchies (#2508)Sushobhit2018-09-281-9/+9
* Remove problematic annotationsClaudiu Popa2018-09-191-10/+4
* Move is_dataclass and is_enum_class back to where they are usedClaudiu Popa2018-09-181-54/+0
* Reformat the code with blackClaudiu Popa2018-09-171-184/+330
* ```too-few-public-methods`` is not reported for dataclasses created with opti...Claudiu Popa2018-09-151-1/+5
* Move is_raising to where it is used and correct its annotationClaudiu Popa2018-09-151-6/+0
* Added checker for format string type mismatches.Yury Gribov2018-09-041-2/+7
* Fix is_subclass_of when one param is not ClassDefCaio Carrara2018-08-221-1/+2
* annotate checkers/utils.pyssolanki2018-08-211-69/+92
* disable some type checking and annotate simple onessolanki2018-08-211-2/+2