diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2009-05-09 11:04:14 -0400 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-05-09 11:04:14 -0400 |
| commit | e97dea8f96fcbbf60649560ad22011d02a239790 (patch) | |
| tree | 6c23868b47a9ae07a1886931ace8522c2f60fe79 | |
| parent | f77eb761dcfb51dacdc94ccd089a10b298e78c13 (diff) | |
| download | python-coveragepy-e97dea8f96fcbbf60649560ad22011d02a239790.tar.gz | |
Silence one more lint message that doesn't seem to matter.
| -rw-r--r-- | .pylintrc | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -63,12 +63,13 @@ load-plugins= # W0603: 28:call_singleton_method: Using the global statement # Messages that may be silly: # R0201: 42:Tracer.stop: Method could be a function +# R0401: 1: Cyclic import (coverage -> coverage.control -> coverage.html) # W0403: 4: Relative import 'coveragetest' # 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,W0122,W0142,W0232,C0323,C0324,W0603, R0201,W0403,E1103, C0111,C0103 +disable-msg=I0011,W0122,W0142,W0232,C0323,C0324,W0603, R0201,R0401,W0403,E1103, C0111,C0103 [REPORTS] |
