summaryrefslogtreecommitdiffstats
path: root/mypy.ini
blob: cd300cd20aeb4d97760ba01c7b5a32091a71a978 (plain)
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
[mypy]
allow_redefinition = False
allow_untyped_globals = False
check_untyped_defs = True
disallow_incomplete_defs = True
disallow_subclassing_any = True
disallow_untyped_calls = True
disallow_untyped_decorators = True
disallow_untyped_defs = True
follow_imports = silent
ignore_missing_imports = False
implicit_reexport = False
no_implicit_optional = True
pretty = True
show_error_codes = True
strict_equality = True
warn_no_return = True
warn_return_any = True
warn_unreachable = True
warn_unused_ignores = True

# Bundled third-party package.
[mypy-port_for.docopt.*]
check_untyped_defs = False
disallow_untyped_defs = False