forked from elastic/elastic-serverless-forwarder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmypy.ini
More file actions
33 lines (25 loc) · 588 Bytes
/
mypy.ini
File metadata and controls
33 lines (25 loc) · 588 Bytes
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
# Global options:
[mypy]
python_version = 3.9
warn_return_any = True
warn_unused_configs = True
strict = True
disallow_untyped_defs = True
no_implicit_reexport = False
exclude = venv/.*
[mypy-elasticapm.*]
ignore_missing_imports = True
[mypy-boto3.*]
ignore_missing_imports = True
[mypy-botocore.*]
ignore_missing_imports = True
[mypy-docker.*]
ignore_missing_imports = True
[mypy-localstack.*]
ignore_missing_imports = True
[mypy-pytest_benchmark.*]
ignore_missing_imports = True
[mypy-rapidjson.*]
ignore_missing_imports = True
[mypy-cysimdjson.*]
ignore_missing_imports = True