From 46daf5aee746c459901d176974c5c26f8ae4c89b Mon Sep 17 00:00:00 2001 From: Lukas Juhrich <lukasjuhrich@wh2.tu-dresden.de> Date: Sun, 24 Jul 2016 05:06:42 +0200 Subject: [PATCH] Include max-line-length settings for flake8/pep8 I did this kind of on personal interest, since my emacs (using flake8) marks every violation (meaning: line >79 chars) red, which is pretty annoying. I personally think 90 is a realistic guideline. --- tox.ini | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tox.ini b/tox.ini index 81c08d5..ba8f673 100644 --- a/tox.ini +++ b/tox.ini @@ -6,3 +6,8 @@ deps=pytest responses mock commands=py.test -v --pep8 mwclient tests + +[flake8] +max-line-length=90 +[pep8] +max-line-length=90 -- GitLab