diff --git a/pylintrc b/pylintrc index 0746a5fdded7f325a32811555243d32f20c71399..b0907ffd6213a09b6ab9862b21cd04dc0f0c3cb1 100644 --- a/pylintrc +++ b/pylintrc @@ -5,9 +5,10 @@ ignore=tests [MESSAGES CONTROL] -# Disable "no docstring" for the moment -# Disable "Line too long" for the moment -disable-msg=C0111,C0301 +# C0111 Disable "no docstring" for the moment +# C0301 Disable "Line too long" for the moment +# R0201 Disable "Method could be a function" +disable-msg=C0111,C0301,R0201 [DESIGN] # Some classes are just beautiful when defining only operators & such.