flake8 clean up

This commit is contained in:
Eddy Hintze
2020-01-19 09:40:41 -05:00
parent e6817cc1de
commit 6fa1a54228
5 changed files with 94 additions and 32 deletions

26
tox.ini Normal file
View File

@@ -0,0 +1,26 @@
[tox]
envlist = flake8
[testenv:flake8]
basepython = python3
deps =
flake8
pep8-naming
commands =
flake8 .
[flake8]
ignore = W503
exclude =
.tox,
.git,
__pycache__,
build,
dist,
*.pyc,
*.egg-info,
.cache,
.eggs,
examples/
max-line-length = 80