forked from Audionut/Upload-Assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (36 loc) · 731 Bytes
/
pyproject.toml
File metadata and controls
43 lines (36 loc) · 731 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
[tool.ruff]
line-length = 176
target-version = "py39"
exclude = ["tests", "data"]
[tool.ruff.lint]
select = [
# Core correctness
"E",
"F",
"W",
"B",
# Imports & modernization
"I",
"UP",
# Code quality
"C4",
"SIM",
"PERF",
"ARG",
# Dates & time
"DTZ",
# Async (if applicable)
"ASYNC",
]
ignore = ["E501", "UP045"]
[tool.ruff.lint.isort]
known-first-party = ["cogs", "data", "src", "web_ui"]
section-order = ["future", "standard-library", "third-party", "first-party", "local-folder"]
[tool.pyright]
pythonVersion = "3.9"
typeCheckingMode = "strict"
reportMissingImports = true
reportMissingTypeStubs = false
reportUnknownMemberType = true
reportUnknownVariableType = true
exclude = ["data"]