forked from electrumsv/electrumsv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmypy.ini
32 lines (31 loc) · 827 Bytes
/
mypy.ini
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
# Global options:
[mypy]
files = electrumsv, electrum-sv
warn_unused_configs = True
ignore_missing_imports = True
warn_return_any = False
# Per-module options: (Temporary measure to silence error messages until coverage can be expanded)
[mypy-electrumsv.crypto.*]
ignore_errors = True
[mypy-electrumsv.bitcoin.*]
ignore_errors = True
[mypy-electrumsv.gui.*]
ignore_errors = True
[mypy-electrumsv.wallet.*]
ignore_errors = True
[mypy-electrumsv.wallet_database.*]
ignore_errors = True
[mypy-electrumsv.network.*]
ignore_errors = True
[mypy-electrumsv.tests.*]
ignore_errors = True
[mypy-electrumsv.storage.*]
ignore_errors = True
[mypy-electrumsv.dnssec.*]
ignore_errors = True
[mypy-electrumsv.commands.*]
ignore_errors = True
[mypy-electrumsv.daemon.*]
ignore_errors = True
[mypy-electrumsv.qrscanner.*]
ignore_errors = True