From b58865b2dd2bddb2ee727adbe238df15dbd3e085 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Mon, 21 Oct 2013 20:21:37 -0700 Subject: Lint setup.py --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index e72eb58b..a514f3cd 100644 --- a/tox.ini +++ b/tox.ini @@ -20,4 +20,4 @@ commands = [testenv:pep8] deps = flake8 # E128 continuation line under-indented for visual indent -commands = flake8 --ignore="E128" cryptography/ tests/ docs/ +commands = flake8 --ignore="E128" cryptography/ tests/ docs/ setup.py -- cgit v1.2.3 From 967c03b3093e2a301a695d80b2e13ead443fcc75 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Mon, 21 Oct 2013 20:22:50 -0700 Subject: Better way --- tox.ini | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index a514f3cd..184a7e3c 100644 --- a/tox.ini +++ b/tox.ini @@ -20,4 +20,7 @@ commands = [testenv:pep8] deps = flake8 # E128 continuation line under-indented for visual indent -commands = flake8 --ignore="E128" cryptography/ tests/ docs/ setup.py +commands = flake8 --ignore="E128" . + +[flake8] +exclude = .tox -- cgit v1.2.3 From 1d8053897def11ae0ec2d946c918e58458271f39 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Mon, 21 Oct 2013 20:44:52 -0700 Subject: Also ignore eggs --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 184a7e3c..187bff84 100644 --- a/tox.ini +++ b/tox.ini @@ -23,4 +23,4 @@ deps = flake8 commands = flake8 --ignore="E128" . [flake8] -exclude = .tox +exclude = .tox,*.egg -- cgit v1.2.3