diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2009-04-18 13:39:28 -0400 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-04-18 13:39:28 -0400 |
| commit | d0a794abfae0fb1d115c5979c9a8dc5c07a12b9c (patch) | |
| tree | 2d3cf1cc0ffd05f3f2bbfc344ad6972104c8951e /.pylintrc | |
| parent | 15dad3a0cd253e4c29136097494adcde6c7b9013 (diff) | |
| download | python-coveragepy-git-d0a794abfae0fb1d115c5979c9a8dc5c07a12b9c.tar.gz | |
More pylint shenanigans.
Diffstat (limited to '.pylintrc')
| -rw-r--r-- | .pylintrc | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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] |
