I would like to exclude a folder from the mypy checks. Looking at the documentation I tried the following configuration in my mypy.ini configuration file
[mypy]
python_version = 3.8
exclude '/venv/'
with no luck.
Yes I want to exclude my virtual environment from mypy checking. I only one to type check the code that I write.
Is it a bug from mypy ?