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) · 781 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