forked from apache/libcloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mypy.ini
46 lines (35 loc) · 1006 Bytes
/
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
[mypy]
python_version = 3.6
platform = linux
show_error_context = True
show_column_numbers = True
# This Package contains generated Protobuf files
#mypy_path = ../common/:common/
# List of ignore files for packages and libraries which don't have type hints
[mypy-lxml.*]
ignore_missing_imports = True
[mypy-xml.dom.*]
ignore_missing_imports = True
[mypy-xmlrpc.*]
ignore_missing_imports = True
[mypy-paramiko.*]
ignore_missing_imports = True
[mypy-cryptography.*]
ignore_missing_imports = True
[mypy-lockfile.*]
ignore_missing_imports = True
# Ignored local modules
[mypy-libcloud.utils.py3]
ignore_errors = True
# NOTE: Fixing drivers will take a while
[mypy-libcloud.compute.drivers.*]
ignore_errors = True
# NOTE: Fixing drivers will take a while
[mypy-libcloud.storage.drivers.*]
ignore_errors = True
# NOTE: Fixing drivers will take a while
[mypy-libcloud.dns.drivers.*]
ignore_errors = True
# NOTE: Fixing drivers will take a while
[mypy-libcloud.container.drivers.*]
ignore_errors = True