-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmypy.ini
46 lines (33 loc) · 783 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
46
[mypy]
mypy_path = ./python
check_untyped_defs = true
warn_unused_ignores = false
warn_redundant_casts = true
no_implicit_optional = true
warn_return_any = true
disallow_untyped_defs = true
show_error_codes = true
;ignore_missing_imports = True
[mypy-service.codegen.*]
ignore_missing_imports = True
ignore_errors = True
[mypy-tests.*]
ignore_errors = True
[mypy-pandas]
ignore_missing_imports = True
[mypy-numpy]
ignore_missing_imports = True
[mypy-grpc.*]
ignore_missing_imports = True
[mypy-grpc_reflection.*]
ignore_missing_imports = True
[mypy-openpyxl.*]
ignore_missing_imports = True
[mypy-lxml.*]
ignore_missing_imports = True
[mypy-flask.*]
ignore_missing_imports = True
ignore_errors = True
[mypy-werkzeug.*]
ignore_missing_imports = True
ignore_errors = True