summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorJohn Anderson <sontek@gmail.com>2015-02-07 21:06:23 -0800
committerJohn Anderson <sontek@gmail.com>2015-02-07 21:06:23 -0800
commit25c64c68d45d11f63684ac6d7ac7fb7e86f6acd3 (patch)
tree1cda16ccc5a8a0a3a7d1e472a9b9bb9153f47d74 /setup.cfg
parent4517ec56047d5f33e0b190b69be2be1029612c05 (diff)
downloadpyramid-25c64c68d45d11f63684ac6d7ac7fb7e86f6acd3.tar.gz
pyramid-25c64c68d45d11f63684ac6d7ac7fb7e86f6acd3.tar.bz2
pyramid-25c64c68d45d11f63684ac6d7ac7fb7e86f6acd3.zip
Add initial pep8 support.
This ignores plenty of warnings and errors in pep8 and only focuses on a small subset that can easily be achieved. Ignores applying pep8 to tests for now and only enforces on the pyramid core code.
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg4
1 files changed, 4 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
index 9633b6980..7d905e370 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -16,3 +16,7 @@ docs = develop easy_install pyramid[docs]
[bdist_wheel]
universal = 1
+[flake8]
+ignore = E301,E302,E731,E261,E123,E121,E128,E129,E125,W291,E501,W293,E303,W391,E266,E231,E201,E202,E127,E262
+exclude = pyramid/tests/,pyramid/compat.py,pyramid/resource.py
+show-source = True