src/tests/gui_pylintrc
changeset 866 1768eb95fd29
parent 808 6c89385ac9ff
child 927 2beb452e6245
--- a/src/tests/gui_pylintrc	Fri Feb 06 13:42:12 2009 +0000
+++ b/src/tests/gui_pylintrc	Mon Feb 09 14:54:20 2009 +0000
@@ -129,7 +129,7 @@
 max-branchs=30
 
 # Maximum number of statements in function / method body
-max-statements=100
+max-statements=200
 
 # Maximum number of parents for a class (see R0901).
 max-parents=7
@@ -137,7 +137,7 @@
 # Maximum number of attributes for a class (see R0902).
 # Require large number of instance attributes as we are loading up handles to widget elements and only want to do this in init
 # for performance reasons
-max-attributes=80
+max-attributes=100
 
 # Minimum number of public methods for a class (see R0903).
 min-public-methods=0
@@ -156,7 +156,7 @@
 
 # Maximum number of lines in a module
 # Increased from 1500 as the packagemanager is doing a lot of GUI initialisation that we can't logically put anywhere else.
-max-module-lines=2500
+max-module-lines=3000
 
 # String used as indentation unit. This is usually " " (4 spaces) or
 # "\t" (1 tab).