summaryrefslogtreecommitdiff
path: root/pylint/checkers/classes.py
Commit message (Expand)AuthorAgeFilesLines
...
* Fix - add `__post_init__` into `defining-attr-methods` to avoid `attribute-de...Andrzej Klajnert2019-07-051-1/+1
* Fix a bunch of linting errors from the codebaseClaudiu Popa2019-05-221-4/+2
* Don't emit ``attribute-defined-outside-init`` for variables defined in setters.Claudiu Popa2019-05-211-6/+13
* Add a function to figure out if a node is a property setter and use it accord...Claudiu Popa2019-05-211-7/+3
* Correct infered to inferredClaudiu Popa2019-05-201-12/+12
* Exclude ``__dict__`` from ``attribute-defined-outside-init``Claudiu Popa2019-05-191-0/+3
* Style - Apply isort on all apllicable filesPierre Sassoulas2019-03-201-16/+15
* ``assigning-non-slot`` not emitted for classes with unknown base classes.Claudiu Popa2019-03-111-35/+37
* Add missing check_messages() for visit_classdef in classes checksClaudiu Popa2019-03-031-0/+12
* Added a new check `class-variable-slots-conflict`Claudiu Popa2019-03-031-10/+21
* Take into account `__class_getitem__` Pascal Corpet2019-02-041-1/+1
* Adding implicit-str-concat-in-sequence check (#1655)Lucas Cimon2018-10-101-9/+9
* Reformat the code with blackClaudiu Popa2018-09-171-445/+634
* Infer decorated methods when looking for method-hiddenClaudiu Popa2018-08-231-9/+21
* Stop protected-access exception for missing class attributesBryce Guinta2018-08-081-0/+2
* Update copyright noticesClaudiu Popa2018-07-151-1/+7
* Merge branch 'master' into fix_2177Sushobhit2018-06-221-1/+1
|\
| * Use as_string() to get the representation of an annotation, not name, which c...Claudiu Popa2018-06-211-1/+1
* | adapt existing test cases for useless-object-inheritance.ssolanki2018-06-211-1/+1
* | Add new checker useless-object-inheritance.ssolanki2018-06-201-1/+8
|/
* `mcs` as the first parameter of metaclass's `__new__` method was replaced by ...Claudiu Popa2018-06-061-1/+1
* Fixed emitting ``useless-super-delegation`` when changing the default value o...Ashley Whetter2018-06-021-2/+3
* Fixed method-hidden raised when assigned to data descriptorsAshley Whetter2018-06-011-0/+8
* Remove unused functionClaudiu Popa2018-05-261-9/+0
* Kill YES in favour of UninferableClaudiu Popa2018-05-241-5/+5
* pyupgrade (#2136)Anthony Sottile2018-05-221-1/+1
* Don't emit 'useless-super-delegation' if annotations are differentBen Green2018-05-151-0/+11
* Fix lint errors caused by the new checker changeClaudiu Popa2018-04-021-3/+2
* Spelling fixesVille Skyttä2018-01-301-1/+1
* Rip some of the six imports from the codebaseClaudiu Popa2018-01-251-10/+9
* Set max-returns to 11Nick Drozd2018-01-041-21/+16
* Regenerate copyright noticesClaudiu Popa2017-12-151-4/+16
* useless-super-delegation takes into account default values for the current im...hippo912017-09-301-0/+96
* Skip the invalid-length-returned check when the return value is clearly an in...Claudiu Popa2017-09-291-1/+8
* Adding a check for ``inconsistent-return-statements`` inside function or meth...hippo912017-09-261-4/+4
* Add a couple of Uninferable filters where we weren't using anyClaudiu Popa2017-08-151-2/+2
* Fix line-too-longClaudiu Popa2017-06-031-1/+2
* Don't emit assigning-non-slot when reassigning the class with another class t...Claudiu Popa2017-06-021-0/+12
* Remove mentions of deprecated astroid node names (#1485)Łukasz Rogalski2017-05-221-4/+4
* Do not emit warning on type(self)._private_attribute access (#1288)Łukasz Rogalski2017-02-051-7/+26
* Change the text of arguments-differ by making it more explicitClaudiu Popa2016-12-301-1/+1
* Take in consideration the dummy-rgx-variable when checking for different para...Claudiu Popa2016-12-301-16/+32
* Fix formatting and use any() to simplify the checkClaudiu Popa2016-12-181-12/+22
* Add new checker len-as-condition (#1154)Alexander Todorov2016-11-291-1/+1
* Report when __slots__ is a simple string and not a non-string container (#1171)Anthony Foglia2016-11-241-0/+5
* Don't try to access variables defined in a separate scope when checking for p...Claudiu Popa2016-11-201-7/+26
* Grammar fixClaudiu Popa2016-07-231-1/+1
* Exempt special methods from arguments-differ. Close #1042Claudiu Popa2016-07-231-1/+7
* Do not emit useless-super-delegation when having extraneous arguments in the ...Claudiu Popa2016-07-231-1/+25
* Use ClassDef.instantiate_class() (#1040)Florian Bruhin2016-07-231-1/+1