forked from fetchai/cosmpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
63 lines (48 loc) · 1014 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[flake8]
paths=cosmpy
copyright-check = True
select = B,C,D,E,F,I,W,
exclude=.md,
vulture_whitelist.py
cosmpy/protos
ignore = E501, W503, DAR401
docstring_style=sphinx
strictness=full
# E501: Line too long
# W503: line break before binary operator
[mypy]
python_version = 3.9
strict_optional = True
exclude = vulture_whitelist.py
[mypy-google.*]
ignore_missing_imports = True
[mypy-requests.*]
ignore_missing_imports = True
[mypy-ecdsa.*]
ignore_missing_imports = True
[mypy-setuptools.*]
ignore_missing_imports = True
[mypy-grpc.*]
ignore_missing_imports = True
[mypy-bech32.*]
ignore_missing_imports = True
[mypy-docker.*]
ignore_missing_imports = True
[mypy-cosmpy.protos.*]
ignore_errors = True
[mypy-pytest.*]
ignore_missing_imports = True
[mypy-click.*]
ignore_missing_imports = True
[mypy-certifi.*]
ignore_missing_imports = True
[mypy-mbedtls.*]
ignore_missing_imports = True
[isort]
profile = black
skip = protos
[check-manifest]
ignore =
Makefile
.pylintrc
.coveragerc