forked from fatihak/InkyPi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmypy.ini
More file actions
108 lines (80 loc) · 2.3 KB
/
Copy pathmypy.ini
File metadata and controls
108 lines (80 loc) · 2.3 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[mypy]
mypy_path = src
namespace_packages = True
explicit_package_bases = True
# Module-specific settings - using follow_imports=silent for test files
# Note: follow_imports=silent commented out to avoid mypy config warnings
# [mypy-tests.*]
# follow_imports = silent
# Third-party libraries that may not have stubs
# [mypy-cysystemd.*]
# ignore_missing_imports = True # commented out to avoid config warnings
# [mypy-inky.*]
# ignore_missing_imports = True # commented out to avoid config warnings
# Test-specific settings
# [mypy-tests.*]
# ignore_missing_imports = False # commented out to avoid config warnings
# Plugin-specific ignores for optional dependencies
# [mypy-openai.*]
# ignore_missing_imports = True # commented out to avoid config warnings
# [mypy-pytz.*]
# ignore_missing_imports = False # commented out to avoid config warnings
# General settings
# Broad src/ typing debt is ratcheted in scripts/lint.sh via
# scripts/mypy_src_baseline.txt. The modules below are the fully strict subset.
ignore_missing_imports = True
follow_imports = skip
warn_return_any = True
disallow_untyped_defs = False
disallow_incomplete_defs = False
check_untyped_defs = True
disallow_untyped_decorators = False
no_implicit_optional = True
warn_redundant_casts = True
warn_unused_ignores = True
warn_no_return = True
warn_unreachable = True
strict_equality = True
[mypy-jsonschema.*]
ignore_missing_imports = True
[mypy-waitress.*]
ignore_missing_imports = True
# ---- Strict subset ----
# Modules listed here are held to --strict standards.
# CI will fail if they regress. See docs/typing.md for how to expand this list.
[mypy-utils.http_utils]
strict = True
[mypy-utils.plugin_errors]
strict = True
[mypy-utils.security_utils]
strict = True
[mypy-utils.client_endpoint]
strict = True
[mypy-utils.display_names]
strict = True
[mypy-utils.messages]
strict = True
[mypy-utils.output_validator]
strict = True
[mypy-utils.paths]
strict = True
[mypy-utils.refresh_info]
strict = True
[mypy-utils.refresh_stats]
strict = True
[mypy-utils.sri]
strict = True
[mypy-utils.time_utils]
strict = True
[mypy-utils.http_cache]
strict = True
[mypy-utils.request_models]
strict = True
[mypy-refresh_task.actions]
strict = True
[mypy-refresh_task.context]
strict = True
[mypy-refresh_task.worker]
strict = True
[mypy-model]
strict = True