forked from equinor/tagreader-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmypy.ini
More file actions
30 lines (26 loc) · 708 Bytes
/
mypy.ini
File metadata and controls
30 lines (26 loc) · 708 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
[mypy]
files = tagreader
check_untyped_defs = True
disallow_any_generics = True
# disallow_untyped_calls = True
disallow_untyped_defs = True
ignore_missing_imports = True
# Temporary fix for https://github.com/python/mypy/issues/10709:
ignore_missing_imports_per_module = True
implicit_reexport = False
local_partial_types = True
# no_implicit_optional = True
strict_equality = True
warn_unused_ignores = True
warn_redundant_casts = True
warn_return_any = True
warn_unreachable = True
warn_unused_configs = True
[mypy-tagreader.clients]
ignore_errors = True
[mypy-tagreader.odbc_handlers]
ignore_errors = True
[mypy-tagreader.utils]
ignore_errors = True
[mypy-tagreader.web_handlers]
ignore_errors = True