chore(repo): enable even more ruff rules

This commit is contained in:
cswimr 2025-01-26 14:11:37 +00:00
parent 4ad73ec6ee
commit 9df7f15bbe
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087

View file

@ -87,6 +87,8 @@ select = [
"W",
"E",
"G",
"A",
"COM",
"INP",
"T20",
"PLC",
@ -99,8 +101,11 @@ select = [
"FIX",
"PERF",
"C4",
"EM",
"RET",
"RSE",
]
ignore = ["PLR0912", "PLR0915", "PLR2004", "PLR0913"]
ignore = ["PLR0912", "PLR0915", "PLR2004", "PLR0913", "EM101"]
# Allow fix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]