-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
ruff.toml
87 lines (84 loc) · 1.34 KB
/
ruff.toml
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
79
80
81
82
83
84
85
86
87
# Allow unused variables when underscore-prefixed.
lint.dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
target-version = "py310"
line-length = 120
exclude=[
".git,",
"__pycache__",
"build",
"tools/**",
".history",
]
lint.select = [
"A",
"ARG",
"ASYNC",
"B",
"BLE",
"C4",
# "C90",
"COM",
# "D",
"DTZ",
"E",
"EM",
"ERA",
"EXE",
"F",
"FBT",
"FLY",
# "FURB",
"G",
"I",
"ICN",
"INP",
"INT",
"ISC",
"LOG",
# "N",
"NPY",
"PERF",
"PGH",
"PIE",
# "PL",
"PLE",
"PT",
"PTH",
"PYI",
"Q",
"RET",
"RSE",
"RUF",
# "S",
"SIM",
"SLF",
"SLOT",
"T10",
"T20",
"TCH",
"TID",
"TRIO",
"TRY",
"UP",
"W",
"YTT",
]
lint.extend-ignore = [
"E501", # Line too long
"COM812", # May cause conflicts when used with the formatter
"ISC001", # May cause conflicts when used with the formatter
]
[lint.per-file-ignores]
"examples/*.py" = [
"INP001", # examples is part of an implicit namespace package
"T201", # We need print in our examples
]
"docs/conf.py" = [
"INP001", # conf.py is part of an implicit namespace package
]
[lint.pydocstyle]
convention = "numpy"
[format]
docstring-code-format = true
indent-style = "space"
quote-style = "double"