diff --git a/Makefile b/Makefile index 40d8eaf..7913fea 100644 --- a/Makefile +++ b/Makefile @@ -47,7 +47,7 @@ tox: venv tox flake: - flake8 hy tests + flake8 hy tests --ignore=E121,E123,E126,E226,E24,E704,W503,E305 clear: clear diff --git a/tox.ini b/tox.ini index 0162794..a4ab4f0 100644 --- a/tox.ini +++ b/tox.ini @@ -12,4 +12,4 @@ deps = -rrequirements-dev.txt [testenv:flake8] -commands = flake8 hy bin tests +commands = flake8 hy bin tests --ignore=E121,E123,E126,E226,E24,E704,W503,E305