Files
Ethan Roseman da7869adf6 Update to Django 5 (#931)
* Update to Django 5

* Ah yes, the classic yaml number problem

* Typechecking issues
2023-12-17 20:56:07 +09:00

39 lines
830 B
INI

[mypy]
# The mypy configurations: https://mypy.readthedocs.io/en/latest/config_file.html
python_version = 3.10
check_untyped_defs = True
disallow_any_generics = True
disallow_untyped_calls = True
disallow_untyped_decorators = True
ignore_errors = False
ignore_missing_imports = True
implicit_reexport = False
strict_optional = True
strict_equality = True
no_implicit_optional = True
warn_unused_ignores = True
warn_redundant_casts = True
warn_unused_configs = True
warn_unreachable = True
warn_no_return = True
namespace_packages = True
disallow_untyped_defs = True
files =
coreapp/**/*.py,
decompme/**/*.py
exclude =
compilers,
manage.py
plugins =
mypy_django_plugin.main,
mypy_drf_plugin.main
mypy_path = $MYPY_CONFIG_FILE_DIR
[mypy.plugins.django-stubs]
django_settings_module = decompme.settings