Add Mypy to dependencies

This commit is contained in:
Joakim Hellsén 2025-07-30 21:15:16 +02:00
commit cf1f78a813
2 changed files with 124 additions and 22 deletions

View file

@ -8,6 +8,7 @@ dependencies = [
"django>=5.2.4",
"django-browser-reload>=1.18.0",
"django-debug-toolbar>=5.2.0",
"django-stubs[compatible-mypy]>=5.2.2",
"django-watchfiles>=1.1.0",
"djlint>=1.36.4",
"platformdirs>=4.3.8",
@ -83,3 +84,9 @@ line-length = 140
[tool.djlint]
profile = "django"
ignore = "H021"
[tool.mypy]
plugins = ["mypy_django_plugin.main"]
[tool.django-stubs]
django_settings_module = "config.settings"