On pylint 1.4.1, Im trying to set the configurations according to my desired python conventions.
with that, I encountered several issues:
when using old-style class I get C1001 Warning ("Old-style class defined"), which I want to suppress.
How can I set pylint to allow this kind of class? suppressing C1001 only partially helps (since I also get an error for not having __ init __ function in my class, which I don't want to suppress in every class - it is usefull in new-style classes).
when defining:
class MyException(Exception): pass
and in another module defining and using:
class MyError(MyException): pass
I get a warning in pylint, saying: W0710: Exception doesn't inherit from standard "Exception" class
is there a way to set it so it will also check the inheritance hirarchy?
is there a way to set my own warning? i.e. not allowing usage of " " for a string (only ' '), or """ """ for docstring (only ''' ''')?
thanks.