chore: disable some Python lints introduced in ruff 0.12

This commit is contained in:
link2xt
2025-06-17 22:37:06 +00:00
committed by l
parent 139fbfae85
commit 0d36c85568
2 changed files with 7 additions and 0 deletions

View File

@@ -66,6 +66,9 @@ lint.select = [
"RUF006" # asyncio-dangling-task
]
lint.ignore = [
"PLC0415" # `import` should be at the top-level of a file
]
line-length = 120
[tool.isort]