-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
60 lines (53 loc) · 1.82 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
[tool.pytest.ini_options]
asyncio_mode = "strict"
[tool.mypy]
python_version = "3.13"
show_error_codes = true
follow_imports = "silent"
ignore_missing_imports = true
warn_incomplete_stub = true
warn_redundant_casts = true
warn_unused_configs = true
check_untyped_defs = true
disallow_incomplete_defs = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
no_implicit_optional = true
strict_equality = true
warn_return_any = true
warn_unused_ignores = true
warn_unreachable = true
[tool.ruff]
target-version = "py313"
lint.select = ["ALL"]
lint.ignore = [
"ANN101", # Missing type annotation for `self` in method
"ANN102", # Missing type annotation for `cls` in classmethod
"COM812", # Trailing comma missing
"D203", # 1 blank line required before class docstring
"D213", # Multi-line docstring summary should start at the second line
"EM101", # Exception must not use a string literal, assign to variable first
"ISC001", # Single line implicit string concatenation
"PLR0912", # Too many branches
"PLR0913", # Too many arguments to function call
"PTH123", # `open()` should be replaced by `Path.open()`
"TCH002", # Move third-party import into a type-checking block
"TRY003", # Avoid specifying long messages outside the exception class
]
[tool.ruff.lint.per-file-ignores]
"tests/*" = [
"ASYNC230", # Async functions should not open files with blocking methods like `open`
"PLR2004", # Magic value used in comparison
"S101", # Use of `assert` detected
"SLF001", # Private member accessed
]
"example.py" = [
"T201", # `print` found
"PLR2004", # Magic value used in comparison
]
[tool.ruff.lint.mccabe]
max-complexity = 25
[tool.coverage.run]
source = ["brother"]