diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2009-05-05 07:00:19 -0400 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-05-05 07:00:19 -0400 |
| commit | 1fbf9f4aa38a460c46b80bb8f8a1ffc2103e10cb (patch) | |
| tree | 449c437b9f7584acfd72a85f0f77f20a4e318fec /.pylintrc | |
| parent | 2d4ebdde563b5a8abb0f9e3b499eef61bd66e8a5 (diff) | |
| download | python-coveragepy-git-1fbf9f4aa38a460c46b80bb8f8a1ffc2103e10cb.tar.gz | |
Lint clean-ups.
Diffstat (limited to '.pylintrc')
| -rw-r--r-- | .pylintrc | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -55,10 +55,11 @@ load-plugins= # Disable the message(s) with the given id(s). # Messages that are just silly: # I0011:106: Locally disabling E1101 -# W0603: 28:call_singleton_method: Using the global 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 # C0324: 15: Comma not followed by a space +# W0603: 28:call_singleton_method: Using the global statement # Messages that may be silly: # R0201: 42:Tracer.stop: Method could be a function # W0403: 4: Relative import 'coveragetest' @@ -66,7 +67,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,C0324, R0201,W0403,E1103, C0111,C0103 +disable-msg=I0011,W0142,W0232,C0323,C0324,W0603, R0201,W0403,E1103, C0111,C0103 [REPORTS] |
