-
Notifications
You must be signed in to change notification settings - Fork 321
Expand file tree
/
Copy pathmypy.ini
More file actions
37 lines (26 loc) · 814 Bytes
/
mypy.ini
File metadata and controls
37 lines (26 loc) · 814 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
34
35
36
[mypy]
disallow_untyped_defs = True
disallow_incomplete_defs = True
# Ignore Mypy errors about packages with missing type hints.
#
# Note: If Python 2 support is dropped in the future, `pkg_resources`,
# `configparser` and `queue` will no longer need to be ignored because
# the Python 3 versions have type hints.
[mypy-boto.*]
ignore_missing_imports = True
[mypy-configparser.*]
ignore_missing_imports = True
[mypy-gevent.*]
ignore_missing_imports = True
[mypy-google.*]
ignore_missing_imports = True
[mypy-pkg_resources.*]
ignore_missing_imports = True
[mypy-queue.*]
ignore_missing_imports = True
[mypy-Queue.*]
ignore_missing_imports = True
# TODO: add type hints incrementally, then remove these overrides
[mypy-datadog.threadstats.*]
disallow_untyped_defs = False
disallow_incomplete_defs = False