From 996dd30a4586b1a7b216a54610eece31a0dac03a Mon Sep 17 00:00:00 2001 From: Colton Leekley-Winslow Date: Wed, 15 Apr 2015 12:42:49 -0400 Subject: [PATCH] style(pep8): Allow lines up to 99 characters Change flake8 config in tox.ini to allow lines up to 99 characters --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index b950eb4..43b768a 100644 --- a/tox.ini +++ b/tox.ini @@ -71,6 +71,7 @@ commands = flake8 \ --max-complexity=15 \ --exclude=./build,.venv,.tox,dist,doc,./falcon/bench/nuts \ --ignore=F403 \ + --max-line-length=99 \ {posargs} [testenv:pylint]