-
Notifications
You must be signed in to change notification settings - Fork 57
/
mypy.ini
32 lines (31 loc) · 887 Bytes
/
mypy.ini
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
[mypy]
python_version = 3.8
warn_unused_configs = True
exclude = .*venv.*/|deploy/dataflow/|granulate-utils
platform = linux
strict = True
no_implicit_optional = False
disallow_any_generics = False
warn_redundant_casts = True
warn_unused_ignores = True
# typeshed package for this one seems outdated: we get "incorrect" type errors when installing
# types-setuptools
[mypy-setuptools.*]
ignore_missing_imports = True
# no types in package / types- package :(
[mypy-configargparse.*]
ignore_missing_imports = True
# no types in package / types- package :(
[mypy-docker.*]
ignore_missing_imports = True
# no types in package / types- package :(
[mypy-websocket.*]
ignore_missing_imports = True
[mypy-netifaces.*]
ignore_missing_imports = True
[mypy-pythoncom.*]
ignore_missing_imports = True
[mypy-wmi.*]
ignore_missing_imports = True
[mypy-humanfriendly.*]
ignore_missing_imports = True