Small step towards null pattern
[gc-dialer] / support / pylint.rc
index ba26a80..cad484c 100644 (file)
@@ -53,9 +53,7 @@ load-plugins=
 #enable-msg=
 
 # Disable the message(s) with the given id(s).
-#Unused Arg, Missing Docstring
-disable-msg=W0613,C0111
-
+disable-msg=W0403,W0612,W0613,C0103,C0111,C0301
 
 [REPORTS]
 
@@ -210,7 +208,7 @@ max-statements=50
 max-parents=7
 
 # Maximum number of attributes for a class (see R0902).
-max-attributes=7
+max-attributes=15
 
 # Minimum number of public methods for a class (see R0903).
 min-public-methods=1
@@ -296,7 +294,8 @@ notes=FIXME,XXX,TODO
 [FORMAT]
 
 # Maximum number of characters on a single line.
-max-line-length=80
+# @note Limiting this to the most extreme cases
+max-line-length=100
 
 # Maximum number of lines in a module
 max-module-lines=1000