forked from metabrainz/picard-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
35 lines (32 loc) · 822 Bytes
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[pycodestyle]
show-source = True
count = True
# ignore = E226,E302,E41
max-line-length = 200
statistics = False
[flake8]
max-line-length = 200
doctests = True
count = True
show-source = True
statistics = True
# # 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)
# ignore = E127,E128,E265,E402,E501
# builtins = _,N_,ngettext,gettext_attributes,gettext_countries,string_
exclude = ui_*.py,
test_*.py
per-file-ignores =
./tag_mapping.py:E501,W605
./devtools.py:E303,E305
./scheduler.py:E402
[coverage:run]
branch = True
[coverage:report]
omit =
runtests.py
test/*
show_missing = True