提交 2a371ab5 authored 作者: Michael Osthege's avatar Michael Osthege 提交者: Brandon T. Willard

Add a mypy configuration section

上级 80bfde1e
...@@ -76,3 +76,281 @@ lines_between_sections = 1 ...@@ -76,3 +76,281 @@ lines_between_sections = 1
honor_noqa = True honor_noqa = True
skip_gitignore = True skip_gitignore = True
skip = aesara/version.py, **/__init__.py skip = aesara/version.py, **/__init__.py
[mypy]
ignore_missing_imports = True
no_implicit_optional = True
check_untyped_defs = False
strict_equality = True
warn_redundant_casts = True
warn_unused_configs = True
warn_unused_ignores = True
warn_return_any = True
warn_no_return = False
warn_unreachable = True
show_error_codes = True
allow_redefinition = False
files = aesara,tests
[mypy-versioneer]
check_untyped_defs = False
[mypy-doc.*]
ignore_errors = True
check_untyped_defs = False
[mypy-setup]
ignore_errors = True
check_untyped_defs = False
[mypy-tests.*]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara._version]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.gpuarray.*]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.graph.utils]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.graph.basic]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.graph.op]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.graph.fg]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.graph.opt]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.graph.type]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.graph.optdb]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.graph.opt_utils]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.graph.unify]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.graph.kanren]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.link.basic]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.link.utils]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.link.c.cmodule]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.link.c.cvm]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.link.c.lazylinker_c]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.compile.mode]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.compile.sharedvalue]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.compile.compilelock]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.compile.function.types]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.compile.debugmode]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.scalar.basic]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.scalar.math]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.type]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.var]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.basic]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.elemwise]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.math]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.basic_opt]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.subtensor]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.shape]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.extra_ops]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.type_other]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.blas]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.blas_headers]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.slinalg]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.sharedvar]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.math_opt]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.blas_c]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.random.op]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.random.basic]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.random.utils]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.link.numba.dispatch.extra_ops]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.link.numba.dispatch.elemwise]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.link.numba.dispatch.random]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.link.jax.dispatch]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.raise_op]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.printing]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.scan.op]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.scan.opt]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.scan.scan_perform_ext]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.scan.utils]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.nnet.conv3d2d]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.nnet.neighbours]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.nnet.abstract_conv]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.nnet.ctc]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.sandbox.*]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.ifelse]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.typed_list.*]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.sparse.basic]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.sparse.sharedvar]
ignore_errors = True
check_untyped_defs = False
\ No newline at end of file
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论