forked from facebookresearch/habitat-lab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mypy.ini
42 lines (31 loc) · 788 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
40
41
42
[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 = False
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-lab/habitat,
habitat-baselines/habitat_baselines,
test
python_version = 3.9
# Third Party Dependencies
[mypy-test.*]
ignore_errors = False
[mypy-habitat-lab.*]
ignore_errors = False
[mypy-habitat_sim.*]
ignore_errors = False
[mypy-habitat-baselines.*]
ignore_errors = False