summaryrefslogtreecommitdiff
path: root/.pylintrc
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2009-04-12 14:34:21 -0400
committerNed Batchelder <ned@nedbatchelder.com>2009-04-12 14:34:21 -0400
commit030fa036e592c3336da512a37945c3b0d0ac701e (patch)
treecafe1f354ef0fc6c1bfc6901f7574be3c4750fd9 /.pylintrc
parentc6933d0d26c8fb26fd26d6b4cf93204cdbb7ef3e (diff)
downloadpython-coveragepy-git-030fa036e592c3336da512a37945c3b0d0ac701e.tar.gz
Pylint tweaks
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc3
1 files changed, 2 insertions, 1 deletions
diff --git a/.pylintrc b/.pylintrc
index b8e6f22d..cbac7dfa 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -60,10 +60,11 @@ load-plugins=
# C0323:311:coverage.report: Operator not followed by a space
# Messages that may be silly:
# R0201: 42:Tracer.stop: Method could be a function
+# E1103: 26:RunTests.test_run_python_file: Instance of 'file' has no 'getvalue' member (but some types could not be inferred)
# 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, C0111,C0103
+disable-msg=I0011,W0603,W0142,C0323, R0201,E1103, C0111,C0103
[REPORTS]