Add another directory to flake8 exclude
When running flake8, we should also be ignoring the build directory. Signed-off-by: Marti Bolivar <marti@foundries.io>
This commit is contained in:
parent
80d5ab109f
commit
673563e0bb
4
tox.ini
4
tox.ini
|
@ -10,8 +10,8 @@ skip_missing_interpreters=true
|
|||
# - E302: expected 2 blank lines, found 1
|
||||
# - W504: line break after binary operator
|
||||
ignore = E126,E261,E302,W504
|
||||
# Don't lint setup.py or the .tox virtualenv directory.
|
||||
exclude = setup.py,.tox
|
||||
# Don't lint setup.py, the .tox virtualenv directory, or the build directory
|
||||
exclude = setup.py,.tox,build
|
||||
|
||||
[testenv]
|
||||
deps = -rtox_deps.txt
|
||||
|
|
Loading…
Reference in New Issue