-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathruff.toml
More file actions
53 lines (53 loc) · 1002 Bytes
/
Copy pathruff.toml
File metadata and controls
53 lines (53 loc) · 1002 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
lint.ignore = [
"A001",
"A004",
"C417",
"C901",
"COM812",
"COM812",
"CPY001",
"D401",
"E501",
"FIX002",
"PD003",
"PLC0415",
"PLC1901",
"PLC2801",
"PLR0904",
"PLR0911",
"PLR0912",
"PLR2004",
"S101",
"S102",
"S404",
"S608",
"SLF001",
"T201",
"T203",
"TC006",
"TD002",
"TD003",
"TID252",
]
lint.select = ["ALL"]
preview = true
[format]
docstring-code-format = true
preview = true
[lint.pydocstyle]
convention = "google"
[lint.per-file-ignores]
"src/belugas/_fns.py" = [
"A002",
"ANN401",
"FBT001",
"FBT002",
"PLR0913",
"PLW1641",
]
"src/belugas/meta.py" = ["FBT001"]
"src/belugas/typing.py" = ["ANN401", "D102", "D105", "PLW3201"]
"t.py" = ["ANN201", "D100", "D101", "D103"]
"tests/*" = ["D100", "D101", "D102", "D103", "D104", "DTZ001", "FBT001"]
[lint.isort]
combine-as-imports = true