-
Notifications
You must be signed in to change notification settings - Fork 417
/
Copy path.mypy.ini
93 lines (69 loc) · 1.59 KB
/
.mypy.ini
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
83
84
85
86
87
88
89
90
91
92
93
[mypy]
allow_redefinition = True
warn_unused_configs = True
warn_redundant_casts = True
show_error_codes = True
show_column_numbers = True
disallow_untyped_decorators = True
follow_imports = normal
local_partial_types = True
enable_error_code = possibly-undefined
warn_unused_ignores = False
files =
backends,
codegen,
devtools
examples,
exir,
extension,
kernels,
profiler,
runtime,
scripts,
test,
util
mypy_path = executorch
[mypy-executorch.backends.*]
follow_untyped_imports = True
[mypy-executorch.codegen.*]
follow_untyped_imports = True
[mypy-executorch.devtools.*]
follow_untyped_imports = True
[mypy-executorch.exir.*]
follow_untyped_imports = True
[mypy-executorch.extension.*]
follow_untyped_imports = True
[mypy-executorch.kernels.*]
follow_untyped_imports = True
[mypy-executorch.profiler.*]
follow_untyped_imports = True
[mypy-executorch.runtime.*]
follow_untyped_imports = True
[mypy-executorch.test.*]
follow_untyped_imports = True
[mypy-functorch.*]
follow_untyped_imports = True
[mypy-requests.*]
follow_untyped_imports = True
[mypy-torchgen.*]
follow_untyped_imports = True
[mypy-buck_util]
ignore_missing_imports = True
[mypy-docutils.*]
ignore_missing_imports = True
[mypy-pandas]
ignore_missing_imports = True
[mypy-pytorch_sphinx_theme]
ignore_missing_imports = True
[mypy-ruamel]
ignore_missing_imports = True
[mypy-setuptools.*]
ignore_missing_imports = True
[mypy-sphinx.*]
ignore_missing_imports = True
[mypy-tomllib]
ignore_missing_imports = True
[mypy-yaml]
ignore_missing_imports = True
[mypy-zstd]
ignore_missing_imports = True