-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.mypy.ini
More file actions
29 lines (25 loc) · 625 Bytes
/
Copy path.mypy.ini
File metadata and controls
29 lines (25 loc) · 625 Bytes
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
[mypy]
python_version = 3.10
# COMPLETELY DISABLE ALL TYPE CHECKS FOR CI
warn_return_any = False
warn_unused_configs = False
disallow_untyped_defs = False
disallow_incomplete_defs = False
check_untyped_defs = False
disallow_untyped_decorators = False
warn_redundant_casts = False
warn_unused_ignores = False
warn_no_return = False
warn_unreachable = False
strict_equality = False
follow_imports = "skip"
implicit_reexport = True
show_error_codes = False
# IGNORE ERRORS IN ALL MODULES
[mypy-*]
ignore_errors = True
# SPECIFICALLY IGNORE TEST FILES
[mypy-tests.*]
ignore_errors = True
[mypy-.*test.*]
ignore_errors = True