forked from aio-libs/aiokafka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
48 lines (40 loc) · 877 Bytes
/
setup.cfg
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
[flake8]
max-line-length = 88
exclude =
.git
venv
__pycache__
.tox
[isort]
line_length=88
include_trailing_comma=True
multi_line_output=3
force_grid_wrap=0
combine_as_imports=True
lines_after_imports=2
extra_standard_library=dataclasses
known_first_party=aiokafka,kafka
known_third_party=pytest
[mypy]
check_untyped_defs = True
disallow_any_generics = True
disallow_untyped_defs = True
follow_imports = silent
strict_optional = True
warn_redundant_casts = True
warn_unused_ignores = True
warn_unused_configs = True
[mypy-pytest]
ignore_missing_imports = True
[mypy-Cython]
ignore_missing_imports = True
[mypy-kafka.*]
ignore_missing_imports = True
warn_no_return = False
disallow_untyped_defs = False
[mypy-kafka.vendor.*]
ignore_missing_imports = True
[mypy-aiokafka.*]
ignore_missing_imports = True
[mypy-aiokafka.util]
ignore_missing_imports = False