forked from facebookresearch/habitat-sim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmypy.ini
More file actions
28 lines (23 loc) · 660 Bytes
/
Copy pathmypy.ini
File metadata and controls
28 lines (23 loc) · 660 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[mypy]
# do not follow imports (except for ones found in typeshed)
ignore_missing_imports = True
follow_imports = silent
no_implicit_optional = True
# treat Optional per PEP 484
strict_optional = False
warn_unused_configs = True
warn_redundant_casts = True
# ensure all execution paths are returning
warn_no_return = True
# Re-enable https://github.com/python/mypy/issues/11839 fixed
warn_unreachable = False
# Enables redefinitions of types in same proper scopes
allow_redefinition = True
show_error_codes = True
check_untyped_defs = True
files=
src_python/habitat_sim,
tests
python_version = 3.9
[mypy-habitat_sim.bindings]
ignore_errors = True