aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@chromium.org>2020-03-26 15:16:27 -0400
committerMike Frysinger <vapier@gentoo.org>2021-04-15 19:12:55 -0400
commit8e182fd12056c7d3703c517e3d43cecf98bb7060 (patch)
tree9fb3179f9ab8b9be1254e6d4003dfc4e5fe0684d /.pylintrc
parentpylintrc: adjust python code to 4 space indent (diff)
downloadpax-utils-8e182fd12056c7d3703c517e3d43cecf98bb7060.tar.gz
pax-utils-8e182fd12056c7d3703c517e3d43cecf98bb7060.tar.bz2
pax-utils-8e182fd12056c7d3703c517e3d43cecf98bb7060.zip
lddtree: re-enable long line checks
Adjust our line length to be 100 cols. This matches what the code has largely been using already, and it fits better with modern systems. People can still write to 80 cols as makes sense, but we'll consider that a soft limit with 100 cols as the upper hard limit. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/.pylintrc b/.pylintrc
index 577641f..b86319b 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -35,7 +35,7 @@ reports=no
score=no
[FORMAT]
-max-line-length=80
+max-line-length = 100
indent-string = ' '
[BASIC]