Separate pep8 config for acme.

This commit is contained in:
Jakub Warmuz 2016-02-20 11:01:10 +00:00
parent 9d9ca27b68
commit 29d16b027e
No known key found for this signature in database
GPG key ID: 2A7BAD3A489B52EA
2 changed files with 5 additions and 1 deletions

4
acme/.pep8 Normal file
View file

@ -0,0 +1,4 @@
[pep8]
# E265 block comment should start with '# '
# E501 line too long (X > 79 characters)
ignore = E265,E501

View file

@ -3,7 +3,7 @@
set -e # Fail fast
# PEP8 is not ignored in ACME
pep8 acme
pep8 --config=acme/.pep8 acme
pep8 \
setup.py \