diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2009-05-09 10:02:21 -0400 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-05-09 10:02:21 -0400 |
| commit | 2018118c60a8f8f3738550eed292ae43c5c4df5d (patch) | |
| tree | ab2958a7d213f9599f47e047c2807d014ef26d5e /.pylintrc | |
| parent | fce62d380f82f6a650a8297341bff3044400b4f9 (diff) | |
| download | python-coveragepy-git-2018118c60a8f8f3738550eed292ae43c5c4df5d.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-- | .pylintrc | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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] |
