]> git.xonotic.org Git - xonotic/xonotic.git/blob - misc/infrastructure/python/mypy.ini
slist: init
[xonotic/xonotic.git] / misc / infrastructure / python / mypy.ini
1 # check with `mypy .`
2 [mypy]
3
4 [slist]
5 disallow_untyped_calls = True
6 disallow_untyped_defs = True
7 disallow_incomplete_defs = True
8 check_untyped_defs = True
9 disallow_subclassing_any = True
10 disallow_untyped_decorators = True
11 warn_redundant_casts = True
12 warn_return_any = True
13 warn_unused_ignores = True
14 warn_unused_configs = True
15 no_implicit_optional = True
16 strict_optional = True