mirror of
https://github.com/fergalmoran/picard.git
synced 2026-01-03 07:03:58 +00:00
15 lines
494 B
INI
15 lines
494 B
INI
[flake8]
|
||
# E127: continuation line over-indented for visual indent
|
||
# E128: continuation line under-indented for visual indent
|
||
# 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,E265,E402,E501,W503
|
||
builtins = _,N_,ngettext,gettext_attributes,gettext_countries,string_
|
||
exclude = ui_*.py
|
||
|
||
[coverage:run]
|
||
source = picard
|
||
omit = */ui_*.py
|