django-model-utils/mypy.ini
Maarten ter Huurne f3335a7fe1 Add configuration for mypy
This does not require annotations yet, but it will check all code
outside of functions.
2024-04-05 17:15:16 +02:00

16 lines
304 B
INI

[mypy]
implicit_reexport=False
pretty=True
show_error_codes=True
strict_equality=True
warn_redundant_casts=True
warn_unreachable=True
warn_unused_ignores=True
mypy_path = $MYPY_CONFIG_FILE_DIR
plugins =
mypy_django_plugin.main
[mypy.plugins.django-stubs]
django_settings_module = "tests.settings"