Set max line length to 100 in pylintrc

This commit is contained in:
Ivan Malison 2016-01-05 14:03:32 -08:00
parent 6f4bc782bb
commit 0a01c89ac7

View File

@ -171,7 +171,7 @@ docstring-min-length=-1
[FORMAT]
# Maximum number of characters on a single line.
max-line-length=80
max-line-length=100
# Regexp for a line that is allowed to be longer than the limit.
ignore-long-lines=^\s*(# )?<?https?://\S+>?$