forked from secure-systems-lab/securesystemslib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mypy.ini
40 lines (30 loc) · 828 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
[mypy]
warn_unused_configs = True
files =
securesystemslib/util.py,
securesystemslib/signer/*.py,
securesystemslib/storage.py,
securesystemslib/gpg/constants.py
# 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.*]
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