-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmypy.ini
More file actions
74 lines (60 loc) · 1.55 KB
/
mypy.ini
File metadata and controls
74 lines (60 loc) · 1.55 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
[mypy]
files = src/{{ cookiecutter.package_name }}
mypy_path = $MYPY_CONFIG_FILE_DIR/mypy_tools/:$MYPY_CONFIG_FILE_DIR/src/:
python_version = 3.14
exclude = (?x)(
~.*
)
plugins = mypy_django_plugin.main,
mypy_drf_plugin.main
allow_redefinition = true
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_subclassing_any = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
no_implicit_optional = true
strict_equality = true
strict_optional = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unused_ignores = true
[mypy.plugins.django-stubs]
django_settings_module = "country_workspace.config.settings"
[mypy-country_workspace.utils.flags]
ignore_errors = true
ignore_missing_imports = True
[mypy-celery.*]
ignore_errors = true
ignore_missing_imports = True
[mypy-constance.*]
ignore_errors = true
ignore_missing_imports = True
[mypy-django_celery_boost.*]
ignore_errors = true
ignore_missing_imports = True
[mypy-debug_toolbar.*]
ignore_errors = true
ignore_missing_imports = True
[mypy-django_regex.*]
ignore_errors = true
ignore_missing_imports = True
[mypy-flags.*]
ignore_errors = true
ignore_missing_imports = True
[mypy-smart_env.*]
ignore_errors = true
ignore_missing_imports = True
[mypy-social_django.*]
ignore_errors = true
ignore_missing_imports = True
[mypy-tailwind.*]
ignore_errors = true
ignore_missing_imports = True
[mypy-unfold.*]
ignore_errors = true
ignore_missing_imports = True
[mypy-unicef_security.*]
ignore_errors = true
ignore_missing_imports = True