-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathruff.toml
More file actions
78 lines (78 loc) · 934 Bytes
/
ruff.toml
File metadata and controls
78 lines (78 loc) · 934 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[lint]
select = [
"ANN",
"B",
"A",
"C4",
"ISC",
"PIE",
"Q",
"RSE",
"RET",
"SIM",
"SLOT",
"TID",
"TD",
"TC",
"ARG",
"FLY",
"I",
"E",
"W",
"D",
"F",
"PGH",
"PL",
"UP",
"RUF",
"TRY",
"FURB",
]
ignore = [
"ANN001",
"ANN201",
"ANN202",
"ANN205",
"ANN206",
"ANN401",
"SIM105",
"SIM115",
"TID252",
"TD002",
"TD003",
"ARG003",
"E501",
"D100",
"D101",
"D102",
"D103",
"D104",
"D105",
"D106",
"D107",
"D203",
"D212",
"D301",
"D400",
"D415",
"RUF001",
"RUF002",
"RUF003",
"RUF005",
"RUF012",
"PLC0415",
"PLE1205",
"PLR0911",
"PLR0912",
"PLR0913",
"PLR0915",
"PLR2004",
"PLW0603",
"PLW1510",
"PLW2901",
"UP015",
"TRY002",
"TRY003",
"TRY301",
"TRY400",
]