-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 758 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 758 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
[tool.isort]
multi_line_output = 0
line_length = 121
atomic = true
combine_as_imports = true
lines_between_types = 1
[tool.black]
target-version = ['py38']
line_length = 121
[tool.mypy]
python_version = "3.10"
show_column_numbers = true
show_error_codes = true
# same as mypy --strict
disallow_subclassing_any = true
disallow_any_generics = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
no_implicit_optional = true
warn_unused_ignores = true
warn_return_any = true
# stella wants to use *
no_implicit_reexport = false
strict_equality = true
[[tool.mypy.overrides]]
module = [
"asyncpg.*",
"uvicorn.*",
]
ignore_missing_imports = true