.mypy.ini 256 B

12345678910
  1. # https://mypy.readthedocs.io/en/stable/config_file.html
  2. [mypy]
  3. cache_dir = ~/.cache/mypy
  4. ignore_missing_imports = True
  5. follow_imports = silent
  6. warn_redundant_casts = True
  7. warn_unused_ignores = True
  8. warn_unreachable = True