-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (22 loc) · 642 Bytes
/
pyproject.toml
File metadata and controls
30 lines (22 loc) · 642 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
[tool.ruff]
target-version = "py312"
select = ["ALL"]
ignore = [
"ANN401", # Dynamically typed expressions (typing.Any) are disallowed
"D203", # no-blank-line-before-class (incompatible with formatter)
"D212", # multi-line-summary-first-line (incompatible with formatter)
"COM812", # incompatible with formatter
"ISC001", # incompatible with formatter
"TRY003",
"EM101",
"EM102",
]
[tool.ruff.flake8-pytest-style]
fixture-parentheses = false
[tool.ruff.pyupgrade]
keep-runtime-typing = true
[tool.ruff.mccabe]
max-complexity = 25
[tool.basedpyright]
reportUnusedCallResult = "none"
reportMissingTypeStubs = "none"