Add a small config for the ruff tool

It will be used for automated refactors of Python code.

(cherry picked from commit b7000ba9b0)
This commit is contained in:
Štěpán Balážik 2026-01-28 00:37:21 +01:00
parent c5c7790aa8
commit ce66d794fc

View file

@ -71,3 +71,12 @@ ignore_names = [
"pytestmark",
"autouse_*",
]
[tool.ruff]
target-version = "py310"
extend-exclude = [
"bin/tests/system/vulture_ignore_list.py",
"contrib",
"dangerfile.py",
"doc",
]