38142d30ba
JIRA: COMPOSE-4086 Signed-off-by: Haibo Lin <hlin@redhat.com>
16 lines
427 B
INI
16 lines
427 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
|
|
# E203: whitespace before ':'
|
|
ignore = E501,E402,H301,H306,E226,W503,E203
|
|
|
|
[run]
|
|
omit = tests/*
|