forked from SAWARATSUKI/ServiceLogos
-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
85 lines (80 loc) · 1.14 KB
/
pyproject.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
[project]
name = "ServiceLogos"
version = "0"
description = ""
authors = []
dependencies = []
requires-python = ">=3.10"
readme = "docs/README.md"
license = { text = "CC BY-NC-SA 4.0" }
[tool.pdm]
distribution = false
[tool.pdm.dev-dependencies]
dev = ["ruff>=0.4.2", "basedpyright>=1.10.4"]
[tool.pdm.scripts]
generate = "python3 docs/scripts/generate-images-table.py"
[tool.basedpyright]
pythonVersion = "3.10"
typeCheckingMode = "standard"
[tool.ruff.lint]
preview = true
ignore = [
"B008",
"B905",
# "COM812",
"E501",
"FBT001",
"FBT002",
"ISC001",
"PERF203",
"PGH003",
"PLC04",
"RUF001",
"RUF002",
"RUF003",
"RUF006",
"RUF100",
"S101",
"S311",
"S404",
"SIM117",
"TRY002",
"TRY003",
]
select = [
"A",
"ANN001",
"ARG",
"ASYNC",
"B",
"C4",
"COM",
"DTZ",
"E",
"F",
"FBT",
"FLY",
"FURB",
"I",
"ISC",
"N",
"NPY",
"PERF",
"PIE",
"PGH",
# "PL",
"PT",
"PTH",
"PYI",
"Q",
"RET",
"RSE",
"RUF",
"S",
"SIM",
"SLF",
"SLOT",
"TCH",
"TRY",
"YTT",
]