forked from facebookresearch/habitat-lab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmypy.ini
39 lines (29 loc) · 716 Bytes
/
mypy.ini
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
29
30
31
32
33
34
35
36
37
38
39
[mypy]
disable_error_code=override
# do not follow imports (except for ones found in typeshed)
ignore_missing_imports = True
#Ignore errors for third parties
ignore_errors = True
follow_imports = silent
# 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
warn_unreachable = True
allow_redefinition = True
show_error_codes = True
check_untyped_defs = True
files=
habitat,
habitat_baselines,
test
python_version = 3.6
# Third Party Dependencies
[mypy-habitat.*]
ignore_errors = False
[mypy-habitat_sim.*]
ignore_errors = False
[mypy-habitat_baselines.*]
ignore_errors = False