-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruff.toml
More file actions
49 lines (47 loc) · 927 Bytes
/
Copy pathruff.toml
File metadata and controls
49 lines (47 loc) · 927 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
exclude = ["raw", "plan", ".venv", "packages/codeknow-cli/generated"]
[lint]
select = ["ALL"]
ignore = [
"D100",
"D101",
"D102",
"D103",
"D107",
"D205",
"D400",
"D401",
"D417",
"COM812",
"ANN401",
"PLC0415",
"BLE001",
"C901",
"PLR0912",
"PLR0913",
"PLR0915",
"PLR2004",
"N803",
"N806",
"PERF401",
"RUF001",
"RUF002",
"D203",
"D213",
"B023",
"B005",
"B904",
"SIM102",
"SIM115",
"S110",
"PLW2901",
"ERA001",
"ARG001",
"ARG002",
"ASYNC240",
"FBT001",
"FBT002",
]
[lint.per-file-ignores]
"**/tests/**" = ["ANN001", "ANN201", "ANN202", "INP001", "N802", "S101", "SLF001"]
"e2e/**" = ["ANN001", "ANN201", "ANN202", "INP001", "N802", "S101", "SLF001"]
"evals/eval_word_press.py" = ["ANN001", "ANN201", "ANN202", "INP001", "N802", "S101", "SLF001", "E402", "T201", "S603", "S607"]