-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 909 Bytes
/
pyproject.toml
File metadata and controls
47 lines (41 loc) · 909 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
46
[tool.black]
line-length = 100
target-version = ['py311', 'py312', 'py313']
extend-exclude = '\.venv|node_modules|\.next'
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 100
ensure_newline_before_comments = true
[tool.pylint.main]
ignore-paths = [".*\\.venv.*", ".*node_modules.*", ".*\\.next.*", ".*__pycache__.*"]
fail-under = 8.5
max-line-length = 100
[tool.pylint."messages control"]
disable = [
"C0114",
"C0115",
"C0116",
"C0301",
"W3101",
"E0401",
"E0611",
"C0413",
"R0913",
"R0801",
"too-few-public-methods",
]
[tool.pytest.ini_options]
addopts = "--import-mode=importlib"
asyncio_mode = "auto"
markers = [
"e2e: marks end-to-end tests",
]
[tool.mypy]
python_version = "3.13"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false