mypy.ini 285 B

12345678910
  1. [mypy]
  2. plugins = numpy.typing.mypy_plugin
  3. show_absolute_path = True
  4. implicit_reexport = False
  5. pretty = True
  6. disallow_any_unimported = True
  7. disallow_any_generics = True
  8. ; https://github.com/python/mypy/issues/15313
  9. disable_bytearray_promotion = true
  10. disable_memoryview_promotion = true