vbv/server/ruff.toml

16 lines
275 B
TOML

[lint]
select = [
"E", "F", "B", "I", "COM818", "ISC002"
# "PL",
# "DJ", "RUF",
]
ignore = [
"E501", # line too long
"F841", # local variable assigned but never used
"B007", # loop control variable
]
unfixable = ["B"]
[format]
quote-style = "double"