forked from aio-libs/yarl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.mypy.ini
49 lines (35 loc) · 785 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
43
44
45
46
47
48
49
[mypy]
python_version = 3.8
color_output = True
error_summary = True
files =
packaging/,
tests/,
yarl/
# check_untyped_defs = True
# disallow_untyped_calls = True
# disallow_untyped_defs = True
# disallow_any_generics = True
enable_error_code =
ignore-without-code
follow_imports = normal
ignore_missing_imports = False
pretty = true
show_column_numbers = true
show_error_codes = true
strict_optional = True
warn_no_return = True
# warn_redundant_casts = True
# warn_unused_ignores = True
[mypy-Cython.*]
ignore_missing_imports = true
[mypy-distutils.*]
ignore_missing_imports = true
[mypy-expandvars]
ignore_missing_imports = true
[mypy-idna]
ignore_missing_imports = true
[mypy-pytest]
ignore_missing_imports = true
[mypy-tomllib]
ignore_missing_imports = true