quantum-perceptron / mypy.ini
ashutosh1919's picture
Adding hypergraph states
46568f0
raw history blame
No virus
415 Bytes
# Global options:
[mypy]
plugins = numpy.typing.mypy_plugin
warn_return_any = True
warn_unused_configs = True
ignore_missing_imports = True
strict_optional = False
no_implicit_optional = True
warn_redundant_casts = True
warn_unused_ignores = True
# Per-module options:
[mypy-mycode.foo.*]
disallow_untyped_defs = True
[mypy-mycode.bar]
warn_return_any = False
[mypy-somelibrary]
ignore_missing_imports = True