Skip to content

Commit af69972

Browse files
committed
build: move configs to setup.cfg
1 parent 91fbc93 commit af69972

File tree

3 files changed

+29
-27
lines changed

3 files changed

+29
-27
lines changed

.flake8

Lines changed: 0 additions & 6 deletions
This file was deleted.

.mypy.ini

Lines changed: 0 additions & 21 deletions
This file was deleted.

setup.cfg

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,31 @@
11
[bdist_wheel]
22
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

0 commit comments

Comments
 (0)