mirror of
https://github.com/ROCm/jax.git
synced 2025-04-16 03:46:06 +00:00

This makes type checking PEP 484 compliant (as of 2018). mypy will change its defaults soon. See: https://github.com/python/mypy/issues/9091 https://github.com/python/mypy/pull/13401
28 lines
646 B
INI
28 lines
646 B
INI
[mypy]
|
|
show_error_codes = True
|
|
disable_error_code = attr-defined
|
|
no_implicit_optional = True
|
|
|
|
[mypy-absl.*]
|
|
ignore_missing_imports = True
|
|
[mypy-colorama.*]
|
|
ignore_missing_imports = True
|
|
[mypy-numpy.*]
|
|
ignore_missing_imports = True
|
|
[mypy-opt_einsum.*]
|
|
ignore_missing_imports = True
|
|
[mypy-scipy.*]
|
|
ignore_missing_imports = True
|
|
[mypy-jax.interpreters.autospmd]
|
|
ignore_errors = True
|
|
[mypy-jax.lax.lax_parallel]
|
|
ignore_errors = True
|
|
[mypy-jax.experimental.jax2tf.tests.primitive_harness]
|
|
ignore_errors = True
|
|
[mypy-libtpu.*]
|
|
ignore_missing_imports = True
|
|
[mypy-jaxlib.mlir.*]
|
|
ignore_missing_imports = True
|
|
[mypy-iree.*]
|
|
ignore_missing_imports = True
|