-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmypy.ini
More file actions
19 lines (18 loc) · 539 Bytes
/
Copy pathmypy.ini
File metadata and controls
19 lines (18 loc) · 539 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[mypy]
# Suggested at https://blog.wolt.com/engineering/2021/09/30/professional-grade-mypy-configuration/
# Goal would be to make all of the below True long-term
disallow_untyped_defs = False
disallow_any_unimported = False
no_implicit_optional = False
check_untyped_defs = False
warn_return_any = False
warn_unused_ignores = False
show_error_codes = True
[mypy-pygraphviz.*]
ignore_missing_imports = True
[mypy-ufl.*]
ignore_missing_imports = True
[mypy-basix.*]
ignore_missing_imports = True
[mypy-cffi.*]
ignore_missing_imports = True