-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmypy.ini
More file actions
53 lines (32 loc) · 812 Bytes
/
mypy.ini
File metadata and controls
53 lines (32 loc) · 812 Bytes
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
[mypy]
# Disallow using Any
disallow_any_explicit = True
disallow_any_generics = True
disallow_subclassing_any = True
plugins = numpy.typing.mypy_plugin
[mypy-plyfile]
ignore_missing_imports = True
[mypy-skimage.*]
follow_imports = skip
follow_imports_for_stubs = True
ignore_missing_imports = True
[mypy-PIL]
ignore_missing_imports = True
[mypy-torch.*]
follow_imports = skip
follow_imports_for_stubs = True
ignore_missing_imports = True
[mypy-torchvision.*]
follow_imports = skip
follow_imports_for_stubs = True
ignore_missing_imports = True
[mypy-torchvision.ops]
ignore_missing_imports = True
[mypy-scipy.*]
follow_imports = skip
follow_imports_for_stubs = True
ignore_missing_imports = True
[mypy-thop.*]
ignore_missing_imports = True
[mypy-inplace_abn.*]
ignore_missing_imports = True