forked from Yelp/paasta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmypy.ini
51 lines (37 loc) · 1.25 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
[mypy]
python_version = 3.6
check_untyped_defs = False
warn_incomplete_stub = True
follow_imports = silent
ignore_missing_imports = True
mypy_path = stubs
[mypy-paasta_tools*]
ignore_missing_imports = False
[mypy-tests*]
# Only specific test files (defined in tox.ini) will be checked, so let's check everything in those.
check_untyped_defs = True
[mypy-paasta_tools.utils]
# utils.py is imported all over the place, so it's good to have type annotations on everything in it.
disallow_untyped_defs = True
[mypy-paasta_tools.long_running_service_tools]
disallow_untyped_defs = True
[mypy-paasta_tools.marathon_tools]
disallow_untyped_defs = True
[mypy-paasta_tools.paasta_serviceinit]
disallow_untyped_defs = True
[mypy-paasta_tools.setup_marathon_job]
disallow_untyped_defs = True
[mypy-paasta_tools.deployd.common]
disallow_untyped_defs = True
[mypy-paasta_tools.autoscaling.autoscaling_cluster_lib]
disallow_untyped_defs = True
[mypy-paasta_tools.metrics.metrics_lib]
disallow_untyped_defs = True
[mypy-paasta_tools.secret_tools]
disallow_untyped_defs = True
[mypy-paasta_tools.frameworks]
disallow_untyped_defs = True
[mypy-paasta_tools.generate_deployments_for_service]
disallow_untyped_defs = True
[mypy-paasta_tools.drain_lib]
disallow_untyped_defs = True