I have several apps in my Django project, but I wanted to exclude directories or apps, how can this be done.
Below is my mypy.ini file, but it doesn't work :
[mypy]
ignore_missing_imports = True
exclude = customers
As you can see above customers
is one of my django apps (directory), what could be the best solution here?