-
Notifications
You must be signed in to change notification settings - Fork 4
/
mypy.ini
38 lines (32 loc) · 775 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
[mypy]
# -- types ---
check_untyped_defs = True
disallow_any_generics = True
disallow_incomplete_defs = True
disallow_untyped_defs = True
no_implicit_optional = True
# --- errors ---
ignore_errors = False
show_none_errors = True
# --- imports ----
ignore_missing_imports = True
namespace_packages = True
explicit_package_bases = False
# follow_imports options: normal, silent, skip and error
follow_imports = normal
follow_imports_for_stubs = True
no_site_packages = True
# --- platform ---
python_version = 3.9
platform = darwin
# --- strictness ---
strict = False
show_traceback = True
raise_exceptions = True
# --- error messages ---
color_output = True
error_summary = True
pretty = True
show_column_numbers = True
show_error_codes = True
show_absolute_path = False