-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmypy.ini
More file actions
27 lines (21 loc) · 843 Bytes
/
Copy pathmypy.ini
File metadata and controls
27 lines (21 loc) · 843 Bytes
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
[mypy]
python_version = 3.14
strict = True
warn_return_any = True
warn_unused_configs = True
[mypy-maintenance_supporter.websocket.*]
; HA websocket_api stubs do not export decorators/classes (websocket_command,
; async_response, ActiveConnection, event_message) that are valid at runtime.
ignore_errors = True
[mypy-maintenance_supporter.helpers.qrcodegen]
; Vendored MIT library (Project Nayuki) — not modified.
ignore_errors = True
[mypy-babel.*]
; Localized weekday names for the calendar event label; babel ships no type
; stubs in the CI type-check env.
ignore_missing_imports = True
[mypy-holidays.*]
; Public-holiday calendars for Workday-aware business days (#83 follow-up).
; The package is the Workday integration's dependency - present in a full HA
; runtime, absent in the CI type-check env.
ignore_missing_imports = True