-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmypy.ini
42 lines (36 loc) · 913 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
[mypy]
python_version = 3.10
mypy_path = ./weather_app
disable_error_code = override,attr-defined
check_untyped_defs = true
disallow_any_explicit = true
# None and Optional handling
no_implicit_optional = true
# Configuring warnings
warn_redundant_casts = true
warn_unused_ignores = false
warn_no_return = true
warn_return_any = true
warn_unreachable = true
# Miscellaneous strictness flags
implicit_reexport = true
strict_equality = true
# Configuring error messages
show_error_context = true
show_column_numbers = true
show_error_codes = true
pretty = false
show_absolute_path = false
disallow_untyped_defs = true
[mypy-expects.*]
ignore_missing_imports = True
[mypy-doublex.*]
ignore_missing_imports = True
[mypy-doublex_expects.*]
ignore_missing_imports = True
[mypy-weather.*]
ignore_missing_imports = True
[mypy-weather_app.*]
ignore_missing_imports = True
[mypy-main.*]
ignore_missing_imports = True