mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-21 21:49:51 +01:00
18 lines
401 B
INI
18 lines
401 B
INI
[mypy]
|
|
plugins =
|
|
mypy_django_plugin.main,
|
|
mypy_drf_plugin.main
|
|
strict_optional = True
|
|
no_implicit_optional = True
|
|
warn_unused_ignores = True
|
|
check_untyped_defs = True
|
|
warn_unreachable = True
|
|
strict_equality = True
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-posthog.tasks.*]
|
|
disallow_untyped_defs = True
|
|
check_untyped_defs = True
|
|
|
|
[mypy.plugins.django-stubs]
|
|
django_settings_module = posthog.settings |