summaryrefslogtreecommitdiffstats
path: root/pycheckrc-for-anaconda
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2001-07-06 19:12:09 +0000
committerMatt Wilson <msw@redhat.com>2001-07-06 19:12:09 +0000
commit5e7f38583d2943141847caba6a34267a2eda2482 (patch)
tree3d66b7b7ae72a00736d43c26a457e1d55db6fef6 /pycheckrc-for-anaconda
parentab03e79f6dd100ed3981b72c3ec2153ac8420c46 (diff)
downloadanaconda-5e7f38583d2943141847caba6a34267a2eda2482.tar.gz
anaconda-5e7f38583d2943141847caba6a34267a2eda2482.tar.xz
anaconda-5e7f38583d2943141847caba6a34267a2eda2482.zip
better defaults for pychecker
Diffstat (limited to 'pycheckrc-for-anaconda')
-rw-r--r--pycheckrc-for-anaconda25
1 files changed, 17 insertions, 8 deletions
diff --git a/pycheckrc-for-anaconda b/pycheckrc-for-anaconda
index 111cef185..666a17e1a 100644
--- a/pycheckrc-for-anaconda
+++ b/pycheckrc-for-anaconda
@@ -15,6 +15,9 @@ onlyCheckInitForMembers = 0
# bool: warn when all module variables are not used (including private vars)
allVariablesUsed = 0
+# bool: produce warnings for each occurrence of a warning for global (xxx)
+reportAllGlobals = 0
+
# bool: warn when private module variables are not used (_var)
privateVariableUsed = 1
@@ -25,30 +28,36 @@ importUsed = 1
localVariablesUsed = 1
# bool: assume a, b, and c are used in this case: a, b, c = func()
-unusedLocalTuple = 0
+unusedLocalTuple = 1
# bool: warn when __init__ is defined in a subclass
initDefinedInSubclass = 0
# bool: warn when calling an attribute not a method
-callingAttribute = 0
+callingAttribute = 1
# bool: warn when using named arguments: func(a=1, b=2), where def func(a, b):
# def func2(a, b, **kw): doesn't generate a warning
-namedArgs = 0
+namedArgs = 1
# int: warnings for code complexity, max value before generating a warning
-maxLines = 2000
-maxBranches = 500
-maxReturns = 100
-
+maxLines = 200
+maxBranches = 50
+maxReturns = 10
# list of strings: ignore warnings generated from these modules
-blacklist = [ 'Tkinter' ]
+blacklist = [ 'Tkinter', 'wxPython', 'gtk', 'GTK', 'GDK', ]
+
+# list of strings: ignore variable not used warnings from the list
+variablesToIgnore = [ '__all__', '__version__', '__copyright__', ]
# bool: print the PyChecker parse of modules, classes, etc.
printParse = 0
# bool: turn debugging of PyChecker on
debug = 0
+
+# EXPERIMENTAL bool: check consistent return values
+checkReturnValues = 0
+