File tree Expand file tree Collapse file tree 3 files changed +29
-27
lines changed Expand file tree Collapse file tree 3 files changed +29
-27
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
[bdist_wheel]
2
2
universal = 1
3
+
4
+ [flake8]
5
+ extend-ignore =
6
+ # E203: Whitespace before ':'
7
+ E203,
8
+ # E501: line too long
9
+ E501
10
+
11
+ [mypy]
12
+ warn_unreachable = True
13
+ warn_unused_ignores = True
14
+ warn_redundant_casts = True
15
+ warn_unused_configs = True
16
+ ; Disabling incremental mode is required for `warn_unused_configs = True` to work
17
+ incremental = False
18
+ disallow_untyped_defs = True
19
+ check_untyped_defs = True
20
+ strict_equality = True
21
+ implicit_reexport = False
22
+ no_implicit_optional = True
23
+
24
+ [mypy-generate_vectors]
25
+ ignore_errors = True
26
+
27
+ [mypy-setuptools.*]
28
+ ignore_missing_imports = True
29
+
30
+ [mypy-bip32utils.*]
31
+ ignore_missing_imports = True
You can’t perform that action at this time.
0 commit comments