-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmypy.ini
More file actions
75 lines (58 loc) · 1.34 KB
/
mypy.ini
File metadata and controls
75 lines (58 loc) · 1.34 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
[mypy]
# Global options
python_version = 3.9
warn_return_any = True
warn_unused_configs = True
warn_redundant_casts = True
warn_unused_ignores = True
warn_no_return = True
warn_unreachable = True
strict_optional = True
strict_equality = True
check_untyped_defs = True
disallow_untyped_calls = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
disallow_untyped_decorators = True
no_implicit_optional = True
show_error_codes = True
show_column_numbers = True
pretty = True
# Import discovery
namespace_packages = True
ignore_missing_imports = False
# Per-module options
[mypy-esmd_shared.*]
strict = True
[mypy-bundlesubmissionclient.*]
strict = True
[mypy-documentrefscheduler.*]
strict = True
[mypy-notificationscheduler.*]
strict = True
[mypy-practitionerclient.*]
strict = True
# Third-party libraries without type stubs
[mypy-yaml.*]
ignore_missing_imports = True
[mypy-requests.*]
ignore_missing_imports = True
[mypy-fhirclient.*]
ignore_missing_imports = True
[mypy-twilio.*]
ignore_missing_imports = True
[mypy-pika.*]
ignore_missing_imports = True
[mypy-pandas.*]
ignore_missing_imports = True
[mypy-oauthlib.*]
ignore_missing_imports = True
[mypy-schedule.*]
ignore_missing_imports = True
[mypy-apscheduler.*]
ignore_missing_imports = True
[mypy-flask.*]
ignore_missing_imports = True
# Test files
[mypy-tests.*]
ignore_errors = True