ruff rule B

This commit is contained in:
thomas girod
2024-07-08 12:34:06 +02:00
parent 2ac578c3ad
commit c6d2ac9100
6 changed files with 15 additions and 9 deletions

View File

@ -71,13 +71,15 @@ version = "1.4.25"
[tool.ruff.lint]
select = [
"I", # isort
"B",
"A", # shadowing of Python builtins
"F401", # unused import
"B",
"C4", # use comprehensions when possible
"I", # isort
"DJ", # django-specific rules,
"F401", # unused import
"FBT", # boolean trap
"UP008", # Use super() instead of super(__class__, self)
"UP009" # utf-8 encoding declaration is unnecessary
"UP009", # utf-8 encoding declaration is unnecessary
]
ignore = [