-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.mypy.ini
67 lines (63 loc) · 1.21 KB
/
.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[mypy]
warn_unused_configs = True
allow_redefinition = True
explicit_package_bases = True
check_untyped_defs = True
modules =
azul.types,
azul.collections,
azul.args,
azul.attrs,
azul.auth,
azul.azulclient,
azul.bytes,
azul.caching,
azul.chalice,
azul.bigquery,
azul.bigquery_reservation,
azul.csp,
azul.deployment,
azul.strings,
azul.logging,
azul,
azul.docker,
azul.doctests,
azul.drs,
azul.dss,
azul.enums,
azul.es,
azul.exceptions,
azul.files,
azul.health,
azul.hmac,
azul.http,
azul.iterators,
azul.json,
azul.json_freeze,
azul.lambda_layer,
azul.lambdas,
azul.modules,
azul.oauth2,
azul.objects,
azul.queues,
azul.template,
azul.terra,
azul.terraform,
azul.threads,
azul.time,
azul.uuids,
azul.indexer,
azul.plugins,
azul.indexer.document,
azul.indexer.field
packages =
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