-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
105 lines (101 loc) · 1.35 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[tool.pyright]
pythonVersion = "3.13"
typeCheckingMode = "strict"
pythonPlatform = "Windows"
include = ["src"]
stubPath = "libs/pyunrealsdk/stubs"
reportMissingModuleSource = false
[tool.ruff]
target-version = "py313"
line-length = 100
[tool.ruff.lint]
# Last time rules scrutinised: ruff 0.6.9 / 2024-10-08
select = [
"F",
"W",
"E",
"C90",
"I",
"N",
"D",
"UP",
"YTT",
"ANN",
"ASYNC",
"S",
"BLE",
"B",
"A",
"COM",
"C4",
"DTZ",
"T10",
"FA",
"ISC",
"ICN",
"LOG",
"G",
"PIE",
"PYI",
"Q",
"RSE",
"RET",
"SLOT",
"SIM",
"TID",
"TCH",
"INT",
"ARG",
"PTH",
"TD",
"FIX",
"ERA",
"PGH",
"PL",
"FLY",
"PERF",
"FURB",
"RUF",
]
ignore = [
"D100",
"D101",
"D104",
"D105",
"D106",
"D107",
"D202",
"D203",
"D212",
"D401",
"D406",
"D407",
"D408",
"D409",
"D410",
"D411",
"D413",
"ANN101",
"ANN102",
"ANN401",
"S101",
"S603",
"S607",
"PYI011",
"PYI021",
"PYI029",
"PYI044",
"PGH003",
"PLR0904",
"PLR0911",
"PLR0912",
"PLR0913",
"PLR0915",
"PLR6301",
"PLW0603",
"PLW2901",
"FURB140",
"FURB167",
]
[tool.ruff.lint.per-file-ignores]
"*.pyi" = ["D418", "A002", "A003"]