Some changes in pylint configuration 85/385/2
authorMatus Fabian <matfabia@cisco.com>
Tue, 23 Feb 2016 11:33:59 +0000 (12:33 +0100)
committerStefan Kobza <skobza@cisco.com>
Thu, 25 Feb 2016 10:01:27 +0000 (10:01 +0000)
method name length changed from 30 to 40
max-args changed from 5 to 7

Change-Id: Iea3efc7c545236f97d230e6f99fce814d3598925
Signed-off-by: Matus Fabian <matfabia@cisco.com>
pylint.cfg

index 3762258..3f94199 100644 (file)
@@ -145,7 +145,7 @@ class-rgx=[A-Z_][a-zA-Z0-9]+$
 function-rgx=[a-z_][a-z0-9_]{2,30}$
 
 # Regular expression which should only match correct method names
-method-rgx=[a-z_][a-z0-9_]{2,30}$
+method-rgx=[a-z_][a-z0-9_]{2,40}$
 
 # Regular expression which should only match correct instance attribute names
 attr-rgx=[a-z_][a-z0-9_]{2,30}$
@@ -242,7 +242,7 @@ int-import-graph=
 [DESIGN]
 
 # Maximum number of arguments for function / method
-max-args=5
+max-args=7
 
 # Argument names that match this expression will be ignored. Default to name
 # with leading underscore