-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmypy.ini
69 lines (48 loc) · 1.21 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# MyPy config file
# File reference here - http://mypy.readthedocs.io/en/latest/config_file.html#config-file
[mypy]
warn_redundant_casts = True
warn_unused_ignores = True
# Needed because of bug in MyPy
disallow_subclassing_any = False
#ignore_missing_imports = True
mypy_path = stubs
[mypy-*]
disallow_untyped_calls = True
disallow_untyped_defs = True
check_untyped_defs = True
warn_return_any = True
no_implicit_optional = True
strict_optional = True
#ignore_missing_imports = True
[mypy-seaborn]
ignore_missing_imports = True
[mypy-z3]
ignore_missing_imports = True
[mypy-numpy]
ignore_missing_imports = True
[mypy-lark]
ignore_missing_imports = True
[mypy-pandas]
ignore_missing_imports = True
[mypy-pylab]
ignore_missing_imports = True
[mypy-sklearn.base]
ignore_missing_imports = True
[mypy-sklearn.*]
ignore_missing_imports = True
[mypy-palettable.colorbrewer.qualitative]
ignore_missing_imports = True
[mypy-dill]
ignore_missing_imports = True
[mypy-pathos.multiprocessing]
ignore_missing_imports = True
[mypy-pickle]
ignore_errors = True
implicit_reexport = True
[mypy-matplotlib]
ignore_missing_imports = True
[mypy-matplotlib.*]
ignore_missing_imports = True
[mypy-pytest]
ignore_missing_imports = True