-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruff.toml
More file actions
50 lines (45 loc) · 702 Bytes
/
Copy pathruff.toml
File metadata and controls
50 lines (45 loc) · 702 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
line-length = 117
indent-width = 4
[lint]
ignore = [
"A002",
"ANN401",
"INP001",
"N802",
"N803",
"N806",
"S101",
"PLR2004",
"E501",
"PGH003",
"ERA001",
"FBT003",
"PLR0913",
"TID252",
"PTH123",
"SIM115",
"COM812",
"S603",
"SLF001",
"FA102",
"NPY002",
"PTH118",
"PTH122",
"S607",
"PERF203",
"BLE001",
]
select = ["ALL"]
fixable = ["ALL"]
unfixable = ["F401"]
[lint.pydocstyle]
convention = "google"
[lint.isort]
force-to-top = ["src"]
from-first = true
length-sort = true
[format]
quote-style = "double"
indent-style = "space"
docstring-code-format = true
docstring-code-line-length = "dynamic"