-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathmypy.ini
More file actions
57 lines (42 loc) · 1.12 KB
/
mypy.ini
File metadata and controls
57 lines (42 loc) · 1.12 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
[mypy]
python_version = 3.11
ignore_missing_imports = True
# Allow implicit Optional (arg: str = None) to avoid massive refactoring
implicit_optional = True
# Reasonable strictness settings
warn_return_any = False
warn_unused_configs = True
check_untyped_defs = False
disallow_untyped_defs = False
# Ignore noisy error codes that aren't real bugs
disable_error_code = no-any-return, import-untyped
[mypy-src.services.health]
ignore_errors = True
[mypy-src.services.orchestrator]
ignore_errors = True
[mypy-src.services.session]
ignore_errors = True
[mypy-src.services.detailed_metrics]
ignore_errors = True
[mypy-src.services.api_key_manager]
ignore_errors = True
[mypy-src.api.state]
ignore_errors = True
[mypy-src.api.files]
ignore_errors = True
[mypy-src.services.state]
ignore_errors = True
[mypy-src.services.state_archival]
ignore_errors = True
[mypy-src.services.execution.*]
ignore_errors = True
[mypy-src.utils.logging]
ignore_errors = True
[mypy-src.utils.error_handlers]
ignore_errors = True
[mypy-src.utils.shutdown]
ignore_errors = True
[mypy-src.middleware.*]
ignore_errors = True
[mypy-src.main]
ignore_errors = True