[lint] more linting changes

This commit is contained in:
2026-07-29 03:30:54 +02:00
parent 3f20cdeed9
commit 7a70b6b1d4
6 changed files with 28 additions and 14 deletions

View File

@@ -31,6 +31,20 @@ python-desfire = ["poetry"]
py-modules = ["app"]
[tool.ruff]
exclude = [
"alembic"
]
exclude = ["alembic"]
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
ignore = ["B008"]