Move the flake8 config to setup.cfg

My editor (atom) reads the setup.cfg but doesn't parse the cmd-line args in the
tox.ini. So lets move the flake8 config to setup.cfg.
This commit is contained in:
Arnold Krille 2016-03-13 18:42:12 +01:00
parent eaa001c722
commit c6765e12ff
2 changed files with 5 additions and 1 deletions

View File

@ -4,3 +4,7 @@ requires = redis >= 2.7.0
[wheel] [wheel]
universal = 1 universal = 1
[flake8]
max-line-length=120
ignore=E731

View File

@ -20,4 +20,4 @@ basepython = python2.7
deps = deps =
flake8 flake8
commands = commands =
flake8 rq tests --max-line-length=120 --ignore=E731 flake8 rq tests