forked from GetStream/stream-chat-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 699 Bytes
/
pyproject.toml
File metadata and controls
45 lines (41 loc) · 699 Bytes
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
[tool.black]
line-length = 88
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.egg
| \.eggs
| \.mypy_cache
| \.tox
| _build
| \.venv
| src
| bin
| stream_chat\.egg-info
| fabfile.py
| lib
| docs
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = "black"
src_paths = ["stream_chat"]
known_first_party = ["stream_chat"]
[tool.pytest.ini_options]
testpaths = ["stream_chat/tests"]
asyncio_mode = "auto"
[tool.mypy]
disallow_untyped_defs = true
disallow_untyped_calls = true
check_untyped_defs = true
warn_unused_configs = true
strict_optional = false
[[tool.mypy.overrides]]
module = "stream_chat.tests.*"
ignore_errors = true