summaryrefslogtreecommitdiffstats
path: root/pycheckrc-for-anaconda
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2001-06-20 16:36:39 +0000
committerJeremy Katz <katzj@redhat.com>2001-06-20 16:36:39 +0000
commit546742ccdee7c0b79c532abc351b117d71a54dad (patch)
treeb977e4df4c1d0d8e2fc2f039c83d4f8334b9f05c /pycheckrc-for-anaconda
parent4826033dc1ae7b6e7b213449832b6c01e88309e0 (diff)
downloadanaconda-546742ccdee7c0b79c532abc351b117d71a54dad.tar.gz
anaconda-546742ccdee7c0b79c532abc351b117d71a54dad.tar.xz
anaconda-546742ccdee7c0b79c532abc351b117d71a54dad.zip
this dropped out too
Diffstat (limited to 'pycheckrc-for-anaconda')
-rw-r--r--pycheckrc-for-anaconda54
1 files changed, 54 insertions, 0 deletions
diff --git a/pycheckrc-for-anaconda b/pycheckrc-for-anaconda
new file mode 100644
index 000000000..111cef185
--- /dev/null
+++ b/pycheckrc-for-anaconda
@@ -0,0 +1,54 @@
+# Sample defaults file for PyChecker 0.3.x
+# This file should be called: .pycheckrc
+# It should be placed in your home directory (value of $HOME).
+# If $HOME is not set, it will look in the current directory.
+
+# bool: warnings for Doc Strings
+noDocModule = 0
+noDocClass = 0
+noDocFunc = 0
+
+# bool: when checking if class data members (attributes) are set
+# check all members or __init__() only
+onlyCheckInitForMembers = 0
+
+# bool: warn when all module variables are not used (including private vars)
+allVariablesUsed = 0
+
+# bool: warn when private module variables are not used (_var)
+privateVariableUsed = 1
+
+# bool: warn when imports are not used
+importUsed = 1
+
+# bool: warn when local variables are not used
+localVariablesUsed = 1
+
+# bool: assume a, b, and c are used in this case: a, b, c = func()
+unusedLocalTuple = 0
+
+# bool: warn when __init__ is defined in a subclass
+initDefinedInSubclass = 0
+
+# bool: warn when calling an attribute not a method
+callingAttribute = 0
+
+# 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
+
+# int: warnings for code complexity, max value before generating a warning
+maxLines = 2000
+maxBranches = 500
+maxReturns = 100
+
+
+# list of strings: ignore warnings generated from these modules
+blacklist = [ 'Tkinter' ]
+
+
+# bool: print the PyChecker parse of modules, classes, etc.
+printParse = 0
+
+# bool: turn debugging of PyChecker on
+debug = 0