-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmypy.ini
More file actions
85 lines (62 loc) · 1.59 KB
/
mypy.ini
File metadata and controls
85 lines (62 loc) · 1.59 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[mypy]
python_version = 3.14
warn_unused_configs = False
warn_redundant_casts = False
warn_unused_ignores = False
ignore_missing_imports = True
show_error_codes = True
check_untyped_defs = False
disallow_untyped_defs = False
disallow_incomplete_defs = False
disallow_untyped_decorators = False
warn_return_any = False
warn_unreachable = False
follow_imports = normal
ignore_errors = False
exclude = ^(\.venv|venv|\.tox|__pycache__|build|dist|tests)(/|$)|^scripts/
[mypy-tests.*]
ignore_errors = True
[mypy-oneiric.adapters.bridge]
ignore_errors = True
[mypy-oneiric.adapters.nosql.*]
ignore_errors = True
[mypy-oneiric.adapters.vector.*]
ignore_errors = True
[mypy-oneiric.adapters.graph.*]
ignore_errors = True
[mypy-oneiric.adapters.embedding.*]
ignore_errors = True
[mypy-oneiric.adapters.messaging.*]
ignore_errors = True
[mypy-oneiric.adapters.identity.*]
ignore_errors = True
[mypy-oneiric.adapters.cache.*]
ignore_errors = True
[mypy-oneiric.adapters.llm.*]
ignore_errors = True
[mypy-oneiric.runtime.*]
ignore_errors = True
[mypy-oneiric.core.resiliency]
ignore_errors = True
[mypy-oneiric.core.secrets_cache]
ignore_errors = True
[mypy-oneiric.actions.security]
ignore_errors = True
[mypy-oneiric.plugins]
ignore_errors = True
[mypy-oneiric.core.*]
ignore_errors = True
[mypy-oneiric.actions.*]
ignore_errors = True
[mypy-oneiric.adapters.queue.*]
ignore_errors = True
[mypy-oneiric.cli]
ignore_errors = True
[mypy-oneiric.domains.workflows]
ignore_errors = True
[mypy-oneiric.demo]
ignore_errors = True
[mypy-oneiric.remote.loader]
ignore_errors = True
[mypy-scripts.*]
ignore_errors = True