forked from biopragmatics/bioregistry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
40 lines (39 loc) · 769 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
36
37
38
39
40
##########################
# Darglint Configuration #
##########################
[darglint]
docstring_style = sphinx
strictness = short
#########################
# Flake8 Configuration #
# (.flake8) #
#########################
[flake8]
ignore =
E203
W503
# no quotes in strings
B028
exclude =
.tox,
.git,
__pycache__,
docs/source/conf.py,
build,
dist,
tests/fixtures/*,
*.pyc,
*.egg-info,
.cache,
.eggs,
data
per-file-ignores =
src/bioregistry/app/api.py:B008,DAR101,DAR201
src/bioregistry/app/ui.py:DAR101,DAR201
src/bioregistry/app/app.py:DAR101,DAR201
max-line-length = 120
max-complexity = 20
import-order-style = pycharm
application-import-names =
bioregistry
tests