forked from robotframework/PythonLibCore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (57 loc) · 742 Bytes
/
pyproject.toml
File metadata and controls
61 lines (57 loc) · 742 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
[tool.black]
target-version = ['py38']
line-length = 120
[tool.ruff]
line-length = 120
lint.fixable = ["ALL"]
target-version = "py38"
lint.select = [
"F",
"E",
"W",
"C90",
"I",
"N",
"YTT",
"S",
"BLE",
"FBT",
"B",
"A",
"COM",
"CPY",
"C4",
"T10",
"EM",
"EXE",
# "FA",
"ISC",
"ICN",
"G",
"PIE",
"PYI",
"Q",
"RSE",
"RET",
"SLF",
"SIM",
"TCH",
"INT",
"ARG",
"PTH",
"ERA",
"PL",
"PERF",
"RUF"
]
[tool.ruff.lint.extend-per-file-ignores]
"utest/*" = [
"S",
"SLF",
"PLR",
"B018"
]
[tool.ruff.lint.mccabe]
max-complexity = 9
[tool.ruff.lint.flake8-quotes]
docstring-quotes = "double"