-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (54 loc) · 765 Bytes
/
pyproject.toml
File metadata and controls
57 lines (54 loc) · 765 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
47
48
49
50
51
52
53
54
55
56
57
[tool.isort]
profile = "black"
[tool.ruff]
output-format = "github"
[tool.ruff.lint]
extend-safe-fixes = [
"D",
"TCH",
"FLY",
"SIM"
]
# Should be fixed:
# D10 - we are missing many docstrings
# D20 - bad formatting of many docstrings
# D40 - bad formatting of many docstrings
# DJ001 - null on text fields
# E501 - line too long
ignore = [
"D10",
"D20",
"D40",
"DJ001",
"E501",
"D212",
"RUF012",
"BLE001",
"S110",
"S308",
"S311",
"FBT002",
"PLR0912",
"PLR0915",
"PLR0913",
"S105",
"EM102",
"PLR2004",
"PERF203",
"DTZ006",
"ARG001",
"ARG002",
"PLC0414",
"S314",
"S324",
"TRY003",
"EM101",
"PT",
"PTH",
"ANN",
"COM812",
"ISC001"
]
select = ["ALL"]
[tool.ruff.lint.mccabe]
max-complexity = 16