diff options
author | David Pursehouse <dpursehouse@collab.net> | 2020-02-12 11:39:27 +0900 |
---|---|---|
committer | David Pursehouse <dpursehouse@collab.net> | 2020-02-12 05:16:11 +0000 |
commit | 119085e6b180b513f7976f91fe56ead11a125d4b (patch) | |
tree | 8672867dc996db2a79bcdad4e968571ace83a9bf | |
parent | 086710465eceb812d032841b2c85a92152ce58f5 (diff) | |
download | git-repo-119085e6b180b513f7976f91fe56ead11a125d4b.tar.gz |
flake8: Increase max line length from 80 to 100
The Google style guide for python [1] says the maximum line length
should be 80, but there are several lines in the code base that
exceed it:
git ls-files | grep py$ | xargs flake8 | grep E501 | wc -l
64
I don't think it's worth going through and re-wrapping all those,
so just increase the limit to 100 which seems to be a reasonable
compromise:
git ls-files | grep py$ | xargs flake8 | grep E501 | wc -l
6
Leave the re-rewrapping of those lines for a follow-up commit,
though.
[1] http://google.github.io/styleguide/pyguide.html#32-line-length
Change-Id: Ia37c34301163431fd1fb4fb6697a4a482d6be077
Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/254595
Tested-by: David Pursehouse <dpursehouse@collab.net>
Reviewed-by: Mike Frysinger <vapier@google.com>
-rw-r--r-- | .flake8 | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,3 +1,3 @@ | |||
1 | [flake8] | 1 | [flake8] |
2 | max-line-length=80 | 2 | max-line-length=100 |
3 | ignore=E111,E114,E402 | 3 | ignore=E111,E114,E402 |