-
Notifications
You must be signed in to change notification settings - Fork 3
/
mypy.ini
45 lines (33 loc) · 842 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
33
34
35
36
37
38
39
40
41
42
43
44
45
# 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-z3]
ignore_missing_imports = True
[mypy-z3.z3]
ignore_missing_imports = True
[mypy-z3.*]
ignore_missing_imports = True
[mypy-lark]
ignore_missing_imports = True
[mypy-zss]
ignore_missing_imports = True
[mypy-PIL]
ignore_missing_imports = True
[mypy-PIL.ImageDraw]
ignore_missing_imports = True
[mypy-loguru.*]
ignore_missing_imports = True