-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmypy.ini
More file actions
31 lines (29 loc) · 720 Bytes
/
mypy.ini
File metadata and controls
31 lines (29 loc) · 720 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
29
30
31
[mypy]
python_version = 3.8
mypy_path = ./policy_gradients/
files = ./policy_gradients/**/*.py
;; Display
error_summary = True
pretty = True
show_absolute_path = False
show_column_numbers = True
show_error_codes = True
show_error_context = True
;; Rules
allow_redefinition = False
allow_untyped_globals = False
; disallow_any_expr = True
disallow_incomplete_defs = True
; disallow_untyped_calls = True
disallow_untyped_decorators = True
disallow_untyped_defs = True
implicit_reexport = True
no_implicit_optional = True
strict_equality = True
strict_optional = True
warn_no_return = True
warn_redundant_casts = True
; warn_return_any = True
warn_unreachable = True
warn_unused_configs = True
warn_unused_ignores = True