-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmypy-core.ini
More file actions
33 lines (29 loc) · 740 Bytes
/
Copy pathmypy-core.ini
File metadata and controls
33 lines (29 loc) · 740 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
30
31
32
33
[mypy]
python_version = 3.14
show_error_codes = True
pretty = True
warn_unused_configs = True
# Actually useful correctness checks
check_untyped_defs = True
no_implicit_optional = True
strict_optional = True
strict_equality = True
# Keep advisory/hygiene stuff out of the blocking gate
warn_redundant_casts = False
warn_unused_ignores = False
warn_return_any = False
disallow_untyped_defs = False
disallow_incomplete_defs = False
disallow_untyped_calls = False
disallow_any_generics = False
disallow_subclassing_any = False
disallow_untyped_decorators = False
mypy_path = typings
plugins = pydantic.mypy
disable_error_code =
redundant-cast,
unused-ignore,
no-untyped-def,
no-untyped-call,
type-arg,
no-any-return