2016-02-23 12:03:11 +00:00
|
|
|
[flake8]
|
|
|
|
exclude = doc/*,*.pyc,*.py~,*.in,*.spec,*.sh,*.rst,setup.py
|
|
|
|
filename = *.py
|
2017-01-11 13:37:16 +00:00
|
|
|
|
|
|
|
# E402: module level import not at top of file
|
|
|
|
# E501: line too long
|
|
|
|
# H301: one import per line
|
|
|
|
# H306: imports not in alphabetical order
|
2017-06-14 11:21:31 +00:00
|
|
|
# E226: missing whitespace around arithmetic operator
|
|
|
|
# W503: line break occured before a binary operator
|
|
|
|
ignore = E501,E402,H301,H306,E226,W503
|
2016-02-23 12:03:11 +00:00
|
|
|
|
|
|
|
[run]
|
|
|
|
omit = tests/*
|