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", "W",
"E", "E",
"G", "G",
"A",
"COM",
"INP", "INP",
"T20", "T20",
"PLC", "PLC",
@ -99,8 +101,11 @@ select = [
"FIX", "FIX",
"PERF", "PERF",
"C4", "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. # Allow fix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"] fixable = ["ALL"]