Fix flake8 configuration

Apparently flake8 v3 doesn't like trailing comments on config settings.

Also remove the pep8 config, which didn't work (because it was missing W503)
and duplicated the flake8 config. We don't use pep8 on its own, so the config
was duplicative.
pull/951/head
Richard van der Hoff 2016-07-26 11:49:40 +01:00
父节点 d34e9f93b7
当前提交 db4f823d34
共有 1 个文件被更改,包括 2 次插入4 次删除

查看文件

@ -16,7 +16,5 @@ ignore =
[flake8]
max-line-length = 90
ignore = W503 ; W503 requires that binary operators be at the end, not start, of lines. Erik doesn't like it.
[pep8]
max-line-length = 90
# W503 requires that binary operators be at the end, not start, of lines. Erik doesn't like it.
ignore = W503