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
30 lines (24 loc) · 903 Bytes
/
Copy pathmypy.ini
File metadata and controls
30 lines (24 loc) · 903 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
[mypy]
files = ddtrace,
docs
exclude = ddtrace/appsec/_iast/_taint_tracking/cmake-build-debug/|ddtrace/appsec/_iast/_taint_tracking/_vendor/|ddtrace/appsec/_iast/_taint_tracking/_deps/|ddtrace/internal/datadog/profiling/build|ddtrace/profiling/collector/test/build/
# 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
ignore_missing_imports = true
namespace_packages = true
plugins = envier.mypy
[mypy-ddtrace.contrib.*]
ignore_errors = true
[mypy-ddtrace.vendor.*]
ignore_errors = true
[mypy-tests.profiling.collector.pprof_3_pb2]
ignore_errors = true
[mypy-tests.profiling.collector.pprof_312_pb2]
ignore_errors = true
[mypy-tests.profiling.collector.pprof_319_pb2]
ignore_errors = true
[mypy-tests.profiling.collector.pprof_421_pb2]
ignore_errors = true