File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
1
[mypy]
2
2
# Start off with these
3
- ; warn_unused_configs = True
4
- ; warn_redundant_casts = True
5
- ; warn_unused_ignores = True
3
+ warn_unused_configs = True
4
+ warn_redundant_casts = True
5
+ warn_unused_ignores = True
6
6
7
7
# Getting these passing should be easy
8
- ; strict_equality = True
9
- ; extra_checks = True
8
+ strict_equality = True
9
+ extra_checks = True
10
10
11
11
# Strongly recommend enabling this one as soon as you can
12
12
; check_untyped_defs = True
13
13
14
14
# These shouldn't be too much additional work, but may be tricky to
15
15
# get passing if you use a lot of untyped libraries
16
- ; disallow_subclassing_any = True
17
- ; disallow_untyped_decorators = True
16
+ disallow_subclassing_any = True
17
+ disallow_untyped_decorators = True
18
18
; disallow_any_generics = True
19
19
20
20
# These next few are various gradations of forcing use of type annotations
23
23
; disallow_untyped_defs = True
24
24
25
25
# This one isn't too hard to get passing, but return on investment is lower
26
- ; no_implicit_reexport = True
26
+ no_implicit_reexport = True
27
27
28
28
# This one can be tricky to get passing if you use a lot of untyped libraries
29
- ; warn_return_any = True
29
+ warn_return_any = True
30
30
31
31
[mypy-tests.*]
32
32
ignore_errors = True
You can’t perform that action at this time.
0 commit comments