Ignore more pycodestyle warnings

These warnings are ignored by default, but setting our own ignore list
removes these defaults.

Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
This commit is contained in:
Lubomír Sedlář 2017-06-14 13:21:31 +02:00
parent f7197ddbcc
commit 1c3637c48f
1 changed files with 3 additions and 1 deletions

View File

@ -6,7 +6,9 @@ filename = *.py
# E501: line too long
# H301: one import per line
# H306: imports not in alphabetical order
ignore = E501,E402,H301,H306
# E226: missing whitespace around arithmetic operator
# W503: line break occured before a binary operator
ignore = E501,E402,H301,H306,E226,W503
[run]
omit = tests/*