-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (37 loc) · 605 Bytes
/
pyproject.toml
File metadata and controls
40 lines (37 loc) · 605 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
[tool.mypy]
enable_incomplete_feature = ["NewGenericSyntax"]
[tool.ruff]
line-length = 100
target-version = "py313"
[tool.ruff.lint]
select = [
"F",
"E",
"W",
"I002",
"N",
"UP",
"YTT",
"ANN",
"ASYNC",
"BLE",
"B",
"C4",
"FA",
"PIE",
"T20",
"RSE",
"RET",
"SIM",
"TC",
"ARG",
"ERA",
"RUF"
]
ignore = ["FA102", "RET501", "E501", "N818"]
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
[tool.ruff.format]
quote-style = "single"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"