quantum-perceptron / mypy.ini
ashutosh1919's picture
Added data utilities
bb572a8
raw
history blame
277 Bytes
# Global options:
[mypy]
plugins = numpy.typing.mypy_plugin
warn_return_any = True
warn_unused_configs = True
# Per-module options:
[mypy-mycode.foo.*]
disallow_untyped_defs = True
[mypy-mycode.bar]
warn_return_any = False
[mypy-somelibrary]
ignore_missing_imports = True