summaryrefslogtreecommitdiff
path: root/.pylintrc
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2009-04-18 13:39:28 -0400
committerNed Batchelder <ned@nedbatchelder.com>2009-04-18 13:39:28 -0400
commitd0a794abfae0fb1d115c5979c9a8dc5c07a12b9c (patch)
tree2d3cf1cc0ffd05f3f2bbfc344ad6972104c8951e /.pylintrc
parent15dad3a0cd253e4c29136097494adcde6c7b9013 (diff)
downloadpython-coveragepy-git-d0a794abfae0fb1d115c5979c9a8dc5c07a12b9c.tar.gz
More pylint shenanigans.
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc3
1 files changed, 2 insertions, 1 deletions
diff --git a/.pylintrc b/.pylintrc
index 175e6d3a..204237fa 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -58,6 +58,7 @@ load-plugins=
# W0603: 28:call_singleton_method: Using the global statement
# W0142: 31:call_singleton_method: Used * or ** magic
# C0323:311:coverage.report: Operator not followed by a space
+# C0324: 15: Comma not followed by a space
# Messages that may be silly:
# R0201: 42:Tracer.stop: Method could be a function
# W0403: 4: Relative import 'coveragetest'
@@ -65,7 +66,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, R0201,W0403,E1103, C0111,C0103
+disable-msg=I0011,W0603,W0142,C0323,C0324, R0201,W0403,E1103, C0111,C0103
[REPORTS]