diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2010-08-28 13:54:11 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2010-08-28 13:54:11 -0400 |
commit | 895fa1bac33cc6f9850e027af1c6abc2014fd4dc (patch) | |
tree | 640db77f5ed21a5758163edf4b1335e467a805cc | |
parent | d91ffbf3ade273f59c64a1dc34a11505150575fb (diff) | |
download | python-coveragepy-git-895fa1bac33cc6f9850e027af1c6abc2014fd4dc.tar.gz |
Don't complain about multiple statements on a line.
-rw-r--r-- | .pylintrc | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -67,10 +67,11 @@ disable-msg= # Messages that may be silly: # R0201: 42:Tracer.stop: Method could be a function +# C0321: 80:CodeUnit.__lt__: More than one statement on a single line # 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) - R0201,R0401,W0403,E1103, + R0201,C0321,R0401,W0403,E1103, # Messages that are noisy for now, eventually maybe we'll turn them on: # C0103:256:coverage.morf_filename: Invalid name "f" (should match [a-z_][a-z0-9_]{2,30}$) |