diff options
author | Chris Lumens <clumens@redhat.com> | 2007-09-19 18:33:15 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2007-09-19 18:33:15 +0000 |
commit | 8cd6d5f3f6b236e5149dcea2aeb244b6d888ce86 (patch) | |
tree | 530aac9958aee6751e4a2014c2b53688d6700d04 /pycheckrc-for-anaconda | |
parent | 504674109fb0252294fee69a43e39bb480ce05f8 (diff) | |
download | anaconda-8cd6d5f3f6b236e5149dcea2aeb244b6d888ce86.tar.gz anaconda-8cd6d5f3f6b236e5149dcea2aeb244b6d888ce86.tar.xz anaconda-8cd6d5f3f6b236e5149dcea2aeb244b6d888ce86.zip |
More updates to turn off annoying warnings we don't care about.
Diffstat (limited to 'pycheckrc-for-anaconda')
-rw-r--r-- | pycheckrc-for-anaconda | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pycheckrc-for-anaconda b/pycheckrc-for-anaconda index cab70ce97..dc2c2e073 100644 --- a/pycheckrc-for-anaconda +++ b/pycheckrc-for-anaconda @@ -30,7 +30,7 @@ moduleImportErrors = 1 mixImport = 1 # unused local variables, except tuples -localVariablesUsed = 1 +localVariablesUsed = 0 # all unused local variables, including tuples unusedLocalTuple = 0 @@ -102,7 +102,7 @@ varArgumentsUsed = 1 ignoreSelfUnused = 0 # check if overridden methods have the same signature -checkOverridenMethods = 1 +checkOverridenMethods = 0 # check if __special__ methods exist and have the correct signature checkSpecialMethods = 1 @@ -159,7 +159,7 @@ emptySlots = 1 intDivide = 1 # check if local variable shadows a global -shadows = 1 +shadows = 0 # check if a variable shadows a builtin shadowBuiltins = 0 @@ -192,13 +192,13 @@ maxLines = 0 maxBranches = 0 # maximum returns in a function -maxReturns = 10 +maxReturns = 0 # maximum # of arguments to a function maxArgs = 0 # maximum # of locals in a function -maxLocals = 40 +maxLocals = 0 # maximum # of identifier references (Law of Demeter) maxReferences = 5 |