-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpyproject.toml
72 lines (69 loc) · 915 Bytes
/
pyproject.toml
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[tool.ruff]
line-length = 88
indent-width = 4
target-version = "py312"
required-version = ">=0.6.9"
[tool.ruff.lint.flake8-quotes]
inline-quotes = "single"
[tool.ruff.lint]
select = [
"A",
"ANN",
"ASYNC",
"C4",
"C90",
"COM",
"E",
"EM103",
"EXE",
"F",
"FA",
"FLY",
"FURB",
"G",
"I",
"ICN",
"ISC",
"LOG",
"N",
"PERF",
"PIE",
"PL",
"PT",
"PTH",
"PYI",
"Q",
"RET",
"RSE",
"RUF",
"S",
"SIM",
"SLF001",
"SLOT",
"T20",
"TID",
"TRY",
"UP",
"W",
]
ignore = [
"ANN002",
"ANN003",
"ANN101",
"ANN102",
"ANN401",
"ASYNC110",
"COM812",
"E501",
"ISC001",
"PERF401",
"PTH123",
"RUF012",
"S110",
"TRY003",
]
[tool.ruff.format]
indent-style = "space"
quote-style = "single"
line-ending = "lf"
docstring-code-format = true