forked from DataDog/dd-trace-py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmypy.ini
More file actions
28 lines (23 loc) · 690 Bytes
/
mypy.ini
File metadata and controls
28 lines (23 loc) · 690 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
[mypy]
files = ddtrace,
ddtrace/profiling/_build.pyx,
ddtrace/profiling/exporter/pprof.pyx,
docs
# mypy thinks .pyx files are scripts and errors out if it finds multiple scripts
scripts_are_modules = true
show_error_codes = true
warn_unused_ignores = true
warn_unused_configs = true
no_implicit_optional = true
ignore_missing_imports = true
namespace_packages = true
[mypy-ddtrace.contrib.*]
ignore_errors = true
[mypy-ddtrace.vendor.*]
ignore_errors = true
[mypy-ddtrace.profiling.exporter.pprof_pb2]
ignore_errors = true
[mypy-ddtrace.profiling.exporter.pprof_pre312_pb2]
ignore_errors = true
[mypy-ddtrace.profiling.exporter.pprof_pre319_pb2]
ignore_errors = true