1c3637c48f
These warnings are ignored by default, but setting our own ignore list removes these defaults. Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
15 lines
392 B
INI
15 lines
392 B
INI
[flake8]
|
|
exclude = doc/*,*.pyc,*.py~,*.in,*.spec,*.sh,*.rst,setup.py
|
|
filename = *.py
|
|
|
|
# E402: module level import not at top of file
|
|
# E501: line too long
|
|
# H301: one import per line
|
|
# H306: imports not in alphabetical order
|
|
# E226: missing whitespace around arithmetic operator
|
|
# W503: line break occured before a binary operator
|
|
ignore = E501,E402,H301,H306,E226,W503
|
|
|
|
[run]
|
|
omit = tests/*
|