aboutsummaryrefslogtreecommitdiff
path: root/tests/qemu-iotests/pylintrc
diff options
context:
space:
mode:
authorJohn Snow <jsnow@redhat.com>2020-03-30 20:00:09 -0400
committerMax Reitz <mreitz@redhat.com>2020-05-05 13:17:36 +0200
commitb031e9a5a65ceef722ba506bc5ee69ec785dc5c5 (patch)
tree2b3c3eea1d61abe92bda346f5d67b05144e2a785 /tests/qemu-iotests/pylintrc
parent1cd0dbfc12019fcd5f0529094a939a1557dfc2df (diff)
iotests: limit line length to 79 chars
79 is the PEP8 recommendation. This recommendation works well for reading patch diffs in TUI email clients. Signed-off-by: John Snow <jsnow@redhat.com> Reviewed-by: Max Reitz <mreitz@redhat.com> Message-Id: <20200331000014.11581-10-jsnow@redhat.com> Reviewed-by: Kevin Wolf <kwolf@redhat.com> Signed-off-by: Max Reitz <mreitz@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/pylintrc')
-rw-r--r--tests/qemu-iotests/pylintrc6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/qemu-iotests/pylintrc b/tests/qemu-iotests/pylintrc
index daec2c4942..5481afe528 100644
--- a/tests/qemu-iotests/pylintrc
+++ b/tests/qemu-iotests/pylintrc
@@ -18,5 +18,9 @@ disable=invalid-name,
too-many-locals,
too-many-public-methods,
# These are temporary, and should be removed:
- line-too-long,
missing-docstring,
+
+[FORMAT]
+
+# Maximum number of characters on a single line.
+max-line-length=79