Files
picard/setup.cfg
Philipp Wolfer 683bcb499f PEP8 fixes, allows for successful check with flake8
Ignore some additional checks globally that don't make much sense for our current code.
2019-08-15 15:10:35 +02:00

18 lines
706 B
INI
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
[flake8]
# E127: continuation line over-indented for visual indent
# E128: continuation line under-indented for visual indent
# E129: visually indented line with same indent as next logical line
# E226: missing whitespace around arithmetic operator
# E241: multiple spaces after ','
# E265: block comment should start with #
# E402: module level import not at top of file
# E501: line too long (xx > 79 characters)
# W503: line break occurred before a binary operator
ignore = E127,E128,E129,E226,E241,E265,E402,E501,W503
builtins = _,N_,ngettext,gettext_attributes,gettext_countries,string_
exclude = ui_*.py,picard/resources.py
[coverage:run]
source = picard
omit = */ui_*.py,picard/resources.py