summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé Padilla <jpadilla@webapplicate.com>2015-03-16 07:34:27 -0400
committerJosé Padilla <jpadilla@webapplicate.com>2015-03-16 07:34:27 -0400
commitbfa6bc8e8cc491dcb7be29d5fbd367b673b73126 (patch)
tree6b3d5372c01064e6351482017c8d26b8a1a2cf34
parent2d0e8272dbd1372289bff1b8e8eba446bed4befa (diff)
parent2276ee3c86e9896667d6a23d675d06a6ec0e3b7c (diff)
downloadpyjwt-bfa6bc8e8cc491dcb7be29d5fbd367b673b73126.tar.gz
Merge pull request #102 from mark-adams/flake8-setup
Moved flake8 max-line-length option from tox.ini to setup.cfg so that it works when running flake8 from normal CLI as well.
-rw-r--r--setup.cfg3
-rw-r--r--tox.ini2
2 files changed, 4 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index 5e40900..147dce3 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,2 +1,5 @@
+[flake8]
+max-line-length = 119
+
[wheel]
universal = 1
diff --git a/tox.ini b/tox.ini
index e54b864..5a46b7d 100644
--- a/tox.ini
+++ b/tox.ini
@@ -37,4 +37,4 @@ deps =
pep8-naming
unittest2
commands =
- flake8 . --max-line-length=120
+ flake8