-
Notifications
You must be signed in to change notification settings - Fork 1
/
mypy.ini
50 lines (41 loc) · 1.03 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[mypy]
plugins = pydantic.mypy
files = ["src", "tests"]
python_version = 3.11
warn_unused_configs = true
strict = true
show_error_codes = true
enable_error_code = ignore-without-code, redundant-expr, truthy-bool
warn_unreachable = true
disallow_untyped_defs = false
disallow_incomplete_defs = false
disallow_untyped_decorators = false
[mypy-fasthep_flow.*]
disallow_untyped_defs = true
disallow_incomplete_defs = true
implicit_reexport = true
ignore_missing_imports = true
[mypy-typer.*]
implicit_reexport = true
ignore_missing_imports = true
[mypy-omegaconf.*]
ignore_missing_imports = true
implicit_reexport = true
[mypy-plumbum.*]
ignore_missing_imports = true
implicit_reexport = true
[mypy-hydra.*]
ignore_missing_imports = true
implicit_reexport = true
[mypy-prefect.*]
ignore_missing_imports = true
implicit_reexport = true
[mypy-dask.*]
ignore_missing_imports = true
implicit_reexport = true
[mypy-dill.*]
ignore_missing_imports = true
implicit_reexport = true
[mypy-hamilton.*]
ignore_missing_imports = true
implicit_reexport = true