-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmypy.ini
More file actions
66 lines (46 loc) · 1.19 KB
/
Copy pathmypy.ini
File metadata and controls
66 lines (46 loc) · 1.19 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
[mypy]
python_version = 3.14
warn_return_any = True
warn_unused_configs = True
disallow_untyped_defs = False
plugins = mypy_django_plugin.main
[mypy.plugins.django-stubs]
django_settings_module = investor_app.settings
# Ignore missing imports for libraries without type stubs
[mypy-numpy_financial.*]
ignore_missing_imports = True
[mypy-matplotlib.*]
ignore_missing_imports = True
[mypy-bs4]
ignore_missing_imports = True
[mypy-bs4.*]
ignore_missing_imports = True
[mypy-numpy]
ignore_missing_imports = True
[mypy-pypdf]
ignore_missing_imports = True
[mypy-environ.*]
ignore_missing_imports = True
[mypy-pytest]
ignore_missing_imports = True
[mypy-requests]
ignore_missing_imports = True
[mypy-rest_framework]
ignore_missing_imports = True
[mypy-playwright.*]
ignore_missing_imports = True
[mypy-structlog]
ignore_missing_imports = True
[mypy-httpx]
ignore_missing_imports = True
# Pre-existing type errors — suppress until files are refactored.
[mypy-core.services.market_scoring]
ignore_errors = True
[mypy-core.services.portfolio]
ignore_errors = True
[mypy-core.services.property_service]
ignore_errors = True
[mypy-core.views]
ignore_errors = True
[mypy-core.api_views]
ignore_errors = True