forked from secure-systems-lab/securesystemslib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmypy.ini
37 lines (26 loc) · 717 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
[mypy]
warn_unused_configs = True
exclude = securesystemslib/_vendor
# Supress error messages until enough modules
# are type annotated
follow_imports = silent
# let's not install typeshed annotations for GCPSigner
[mypy-google.*]
ignore_missing_imports = True
# Suppress error messages for non-annotating dependencies
[mypy-PyKCS11.*]
ignore_missing_imports = True
[mypy-asn1crypto.*]
ignore_missing_imports = True
[mypy-sigstore_protobuf_specs.*]
ignore_missing_imports = True
[mypy-pyspx.*]
ignore_missing_imports = True
[mypy-azure.*]
ignore_missing_imports = True
[mypy-boto3.*]
ignore_missing_imports = True
[mypy-botocore.*]
ignore_missing_imports = True
[mypy-hvac.*]
ignore_missing_imports = True