forked from conda/conda-lock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mypy.ini
47 lines (37 loc) · 951 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
47
[mypy]
plugins = pydantic.mypy
# disallow_untyped_calls = true
# disallow_untyped_decorators = false
disallow_untyped_defs = false
disallow_untyped_calls = false
disallow_untyped_decorators = false
disallow_incomplete_defs = false
check_untyped_defs = true
exclude = (?x)(
tests/test-local-pip/setup.py
)
[mypy-conda_lock.*]
disallow_untyped_defs = true
# disallow_untyped_calls = true
# disallow_untyped_decorators = true
disallow_incomplete_defs = true
[pydantic-mypy]
init_forbid_extra = True
init_typed = True
warn_required_dynamic_aliases = True
warn_untyped_fields = True
[mypy-conda_lock._vendor.*]
ignore_errors = True
[mypy-poetry.*]
ignore_missing_imports = True
[mypy-clikit.*]
ignore_missing_imports = True
[mypy-docker.*]
ignore_missing_imports = True
[mypy-ensureconda.*]
ignore_missing_imports = True
[mypy-flaky.*]
ignore_missing_imports = True
[mypy-click_default_group.*]
ignore_missing_imports = True
[mypy-tests.*]