-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.ruff.toml
More file actions
52 lines (48 loc) · 702 Bytes
/
.ruff.toml
File metadata and controls
52 lines (48 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
51
52
preview = true
builtins = ['reveal_type']
line-length = 120
[format]
quote-style = "single"
skip-magic-trailing-comma = false
[lint.flake8-quotes]
inline-quotes = "single"
[lint.pydocstyle]
convention = "numpy"
[lint]
select = ["ALL"]
fixable = ["ALL"]
ignore = [
"T201",
"E251",
"E741",
"DOC501",
"FURB140",
"ANN002",
"ANN003",
"ANN401",
"RUF012",
"TRY400",
"PLR0904",
"PLR0911",
"PLR0912",
"PLR0913",
"PLR0914",
"PLR0915",
"PLR0917",
"PLR1702",
"PLW1514",
"C901",
"CPY001",
"TC006",
"TRY003",
"INP001",
"N999",
"EM",
"S",
"FBT",
"TD",
"FIX",
"FA",
"B905",
"PT",
]