-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.mypy.ini
More file actions
98 lines (91 loc) · 2.47 KB
/
.mypy.ini
File metadata and controls
98 lines (91 loc) · 2.47 KB
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
94
95
96
97
98
[mypy]
warn_unused_configs = True
allow_redefinition = True
explicit_package_bases = True
check_untyped_defs = True
implicit_reexport = False
modules =
azul.args,
azul.auth,
azul.azulclient,
azul.chalice,
azul.infra.bigquery_reservation,
azul.csp,
azul.deployment,
azul.logging,
azul,
azul.docker,
azul.drs,
azul.dss,
azul.opensearch,
azul.health,
azul.hmac,
azul.http,
azul.infra.lambda_layer,
azul.lambdas,
azul.modules,
azul.oauth2,
azul.queues,
azul.template,
azul.terra,
azul.infra.terraform,
azul.plugins,
azul.service.controller,
lambdas.indexer.app,
azul.schemas,
azul_test_case,
test_tagging,
scripts.reindex,
scripts.mirror,
scripts.post_deploy_tdr,
scripts.find_in_snapshots,
scripts.can_bundle,
scripts.delete_older_function_versions,
scripts.zenhub_to_github,
azul.plugins.metadata.anvil.bundle,
azul.plugins.metadata.anvil.schema,
azul.plugins.metadata.anvil.indexer.aggregate,
azul.plugins.metadata.anvil.indexer.transform,
azul.plugins.metadata.anvil.service.aggregation,
azul.plugins.metadata.anvil.service.response,
azul.plugins.metadata.anvil,
azul.plugins.metadata.hca.bundle,
azul.plugins.metadata.hca.indexer.aggregate,
azul.plugins.metadata.hca.indexer.transform,
azul.plugins.metadata.hca.service.contributor_matrices,
azul.plugins.metadata.hca.service.aggregation,
azul.plugins.metadata.hca.service.response,
azul.plugins.metadata.hca,
azul.plugins.metadata.anvil.service.filter,
azul.plugins.metadata.hca.service.filter,
azul.service.storage_service,
azul.service.source_service,
azul.filters,
azul.service,
azul.service.source_controller,
azul.service.query_controller,
azul.service.index_controller,
azul.service.catalog_controller,
azul.service.manifest_controller,
azul.service.repository_controller,
azul.service.drs_controller,
azul.service.manifest_service,
azul.field_type,
azul.source,
scripts.kibana_proxy,
scripts.provision_credentials,
packages =
azul.indexer,
azul.lib,
azul.openapi
[mypy-furl.*]
follow_untyped_imports = True
[mypy-requests.*]
follow_untyped_imports = True
[mypy-docker.*]
; https://github.com/python/typeshed/issues/13439
follow_untyped_imports = True
[mypy-aws_requests_auth.boto_utils]
follow_untyped_imports = True
[mypy-googleapiclient.*]
follow_untyped_imports = True