basic/linux: update kernel headers from v6.14-rc1
[systemd.io.git] / mypy.ini
blobc9836169c104cf37f8773abae4edae11bed7952b
1 [mypy]
2 python_version = 3.9
3 # belonging to --strict
4 warn_unused_configs = true
5 disallow_any_generics = true
6 disallow_subclassing_any = true
7 disallow_untyped_calls = true
8 disallow_untyped_defs = true
9 disallow_untyped_decorators = true
10 disallow_incomplete_defs = true
11 check_untyped_defs = true
12 no_implicit_optional = true
13 warn_redundant_casts = true
14 warn_unused_ignores = false
15 warn_return_any = true
16 no_implicit_reexport = true
17 # extra options not in --strict
18 pretty = true
19 show_error_codes = true
20 show_column_numbers = true
21 warn_unreachable = true
22 strict_equality = true