22 lines
500 B
INI
22 lines
500 B
INI
[mypy]
|
|
python_version = 3.10
|
|
check_untyped_defs = True
|
|
ignore_missing_imports = True
|
|
warn_unused_ignores = True
|
|
warn_redundant_casts = True
|
|
warn_unused_configs = True
|
|
plugins = mypy_django_plugin.main, mypy_drf_plugin.main
|
|
|
|
[mypy.plugins.django-stubs]
|
|
DJANGO_SETTINGS_MODULE = config.settings.test
|
|
|
|
[mypy-*.migrations.*]
|
|
# Django migrations should not produce any errors:
|
|
ignore_errors = True
|
|
|
|
[coverage:run]
|
|
include = vbv_lernwelt/*
|
|
omit = *migrations*, *tests*
|
|
plugins =
|
|
django_coverage_plugin
|