Add pep8 config: relax line length limit and ignore E203

This commit is contained in:
mpeterv 2016-03-20 17:44:29 +03:00
parent f05451124c
commit d290832551
2 changed files with 4 additions and 1 deletions

View File

@ -15,5 +15,5 @@ install:
script:
- pyflakes .
- pep8 . --max-line-length 99 --ignore E302
- pep8 .
- ./test.sh

3
setup.cfg Normal file
View File

@ -0,0 +1,3 @@
[pep8]
ignore = E203,E302
max-line-length = 119