[chore] Stricter ruff rules

This commit is contained in:
Fabian Joswig 2026-04-20 19:33:15 +02:00
commit c896843664
22 changed files with 400 additions and 311 deletions

View file

@ -2,5 +2,9 @@
requires = ["setuptools >= 63.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.ruff]
target-version = "py310"
[tool.ruff.lint]
ignore = ["F403"]
extend-select = ["I", "B", "PLE", "UP"]
ignore = ["F403", "E501", "PLC0415"]