-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmypy.ini
46 lines (36 loc) · 910 Bytes
/
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
[mypy]
warn_unused_configs = True
warn_redundant_casts = True
plugins = pydantic.mypy
[mypy-astropy.*]
ignore_missing_imports = True
[mypy-coverage.*]
ignore_missing_imports = True
[mypy-networkx.*]
ignore_missing_imports = True
[mypy-sqlalchemy.*]
ignore_missing_imports = True
[mypy-lsst.*]
ignore_missing_imports = True
ignore_errors = True
[mypy-lsst.utils.*]
ignore_missing_imports = False
ignore_errors = True
[mypy-lsst.resources.*]
ignore_missing_imports = False
ignore_errors = True
[mypy-lsst.daf.butler.*]
ignore_missing_imports = False
ignore_errors = True
[mypy-lsst.pipe.base.*]
ignore_missing_imports = False
ignore_errors = True
[mypy-lsst.ctrl.mpexec.*]
ignore_missing_imports = False
ignore_errors = False
disallow_untyped_defs = True
disallow_incomplete_defs = True
strict_equality = True
warn_unreachable = True
# Until we switch to solely pydantic v2
warn_unused_ignores = False