forked from mesonbuild/meson
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.mypy.ini
More file actions
82 lines (62 loc) · 2.06 KB
/
Copy path.mypy.ini
File metadata and controls
82 lines (62 loc) · 2.06 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[mypy]
strict_optional = False
show_error_context = False
show_column_numbers = True
ignore_missing_imports = False
implicit_reexport = False
follow_imports = silent
warn_redundant_casts = True
warn_unused_ignores = True
warn_return_any = True
# warn_unreachable = True
disallow_untyped_calls = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
disallow_untyped_decorators = True
no_implicit_optional = True
strict_equality = True
check_untyped_defs = True
# disallow_any_expr = True
# disallow_any_decorated = True
# disallow_any_explicit = True
# disallow_any_generics = True
# disallow_subclassing_any = True
# future default behaviors
allow_redefinition_new = True
local_partial_types = True
[mypy-mesonbuild.cmdline]
strict_optional = True
[mypy-mesonbuild.coredata]
strict_optional = True
[mypy-mesonbuild.depfile]
strict_optional = True
[mypy-mesonbuild.envconfig]
strict_optional = True
[mypy-mesonbuild.environment]
strict_optional = True
[mypy-mesonbuild.machinefile]
strict_optional = True
[mypy-mesonbuild.mcompile]
strict_optional = True
[mypy-mesonbuild.mconf]
strict_optional = True
[mypy-mesonbuild.mdevenv]
strict_optional = True
[mypy-mesonbuild.mdist]
strict_optional = True
[mypy-mesonbuild.mesondata]
strict_optional = True
[mypy-mesonbuild.mesonmain]
strict_optional = True
[mypy-mesonbuild.minit]
strict_optional = True
[mypy-mesonbuild.minstall]
strict_optional = True
[mypy-mesonbuild.mlog]
strict_optional = True
[mypy-mesonbuild.programs]
strict_optional = True
[mypy-mesonbuild.scripts.symbolextractor]
strict_optional = True
[mypy-mesonbuild.tooldetect]
strict_optional = True