-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathmypy.ini
More file actions
49 lines (40 loc) · 1.06 KB
/
mypy.ini
File metadata and controls
49 lines (40 loc) · 1.06 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
[mypy]
python_version = 3.10
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_no_return = true
warn_unreachable = true
strict_optional = true
plugins = pydantic.mypy,sqlalchemy.ext.mypy.plugin
exclude = (?x)(
^src/askui/models/ui_tars_ep/ui_tars_api\.py$
| ^src/askui/tools/askui/askui_ui_controller_grpc/.*$
)
mypy_path = src:tests
explicit_package_bases = true
namespace_packages = true
[mypy-jsonref.*]
ignore_missing_imports = true
[mypy-bson.*]
ignore_missing_imports = true
[mypy-alembic.*]
ignore_missing_imports = true
[mypy-structlog.*]
ignore_missing_imports = true
[mypy-starlette_context.*]
ignore_missing_imports = true
[mypy-asgi_correlation_id.*]
ignore_missing_imports = true
[mypy-prometheus_fastapi_instrumentator.*]
ignore_missing_imports = true
[mypy-mss.*]
ignore_missing_imports = true
[mypy-ppadb.*]
ignore_missing_imports = true