-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.mypy.ini
More file actions
36 lines (29 loc) · 718 Bytes
/
Copy path.mypy.ini
File metadata and controls
36 lines (29 loc) · 718 Bytes
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
[mypy]
plugins = numpy.typing.mypy_plugin
warn_unused_configs = True
warn_redundant_casts = True
warn_unused_ignores = True
warn_no_return = True
warn_unreachable = True
warn_return_any = False
disallow_untyped_defs = True
check_untyped_defs = True
show_error_codes = True
show_column_numbers = True
show_error_context = True
strict_equality = True
exclude = (examples|scripts)/$
[mypy-bitstring.*]
ignore_missing_imports = True
[mypy-scipy.*]
ignore_missing_imports = True
allow_untyped_calls = True
[mypy-numpy.*]
allow_untyped_defs = True
allow_untyped_calls = True
[mypy-networkx.*]
ignore_missing_imports = True
[mypy-setuptools.*]
ignore_missing_imports = True
[mypy-numba.*]
ignore_missing_imports = True