summaryrefslogtreecommitdiff
path: root/.pylintrc
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2009-05-09 10:02:21 -0400
committerNed Batchelder <ned@nedbatchelder.com>2009-05-09 10:02:21 -0400
commit6425cd30f957b28f72e9bab10a9aec087089ba3f (patch)
treefb4ce7c2e98b73d08e3dfac528a10445c44af3fa /.pylintrc
parent1180199850055ca2ee1368d3bd14c0c1d56d5c82 (diff)
downloadpython-coveragepy-6425cd30f957b28f72e9bab10a9aec087089ba3f.tar.gz
Change run_python_file again so that it doesn't produce compiled turds in the file system.
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc3
1 files changed, 2 insertions, 1 deletions
diff --git a/.pylintrc b/.pylintrc
index ba96200..5d34328 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -55,6 +55,7 @@ load-plugins=
# Disable the message(s) with the given id(s).
# Messages that are just silly:
# I0011:106: Locally disabling E1101
+# W0122: 30:run_python_file: Use of the exec 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
@@ -67,7 +68,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,W0142,W0232,C0323,C0324,W0603, R0201,W0403,E1103, C0111,C0103
+disable-msg=I0011,W0122,W0142,W0232,C0323,C0324,W0603, R0201,W0403,E1103, C0111,C0103
[REPORTS]