summaryrefslogtreecommitdiff
path: root/.pylintrc
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2009-05-05 07:00:19 -0400
committerNed Batchelder <ned@nedbatchelder.com>2009-05-05 07:00:19 -0400
commit7ee3eed7c36bce6673e2d07afe80a157b8ff2f56 (patch)
tree10a4a801b30692e59df97d34f1e4d531d0431def /.pylintrc
parent85e43adf3dcc94566b27164bd7a9cb8e456fe4bd (diff)
downloadpython-coveragepy-7ee3eed7c36bce6673e2d07afe80a157b8ff2f56.tar.gz
Lint clean-ups.
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc5
1 files changed, 3 insertions, 2 deletions
diff --git a/.pylintrc b/.pylintrc
index db432c9..ba96200 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -55,10 +55,11 @@ load-plugins=
# Disable the message(s) with the given id(s).
# Messages that are just silly:
# I0011:106: Locally disabling E1101
-# W0603: 28:call_singleton_method: Using the global statement
# W0142: 31:call_singleton_method: Used * or ** magic
+# W0232: 6:AnyOldObject: Class has no __init__ method
# C0323:311:coverage.report: Operator not followed by a space
# C0324: 15: Comma not followed by a space
+# W0603: 28:call_singleton_method: Using the global statement
# Messages that may be silly:
# R0201: 42:Tracer.stop: Method could be a function
# W0403: 4: Relative import 'coveragetest'
@@ -66,7 +67,7 @@ load-plugins=
# Messages that are noisy for now, eventually maybe we'll turn them on:
# C0111:169:coverage.analyze_morf: Missing docstring
# C0103:256:coverage.morf_filename: Invalid name "f" (should match [a-z_][a-z0-9_]{2,30}$)
-disable-msg=I0011,W0603,W0142,C0323,C0324, R0201,W0403,E1103, C0111,C0103
+disable-msg=I0011,W0142,W0232,C0323,C0324,W0603, R0201,W0403,E1103, C0111,C0103
[REPORTS]