chore(repo): enable even more ruff rules
This commit is contained in:
parent
4ad73ec6ee
commit
9df7f15bbe
1 changed files with 6 additions and 1 deletions
|
@ -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"]
|
||||
|
|
Loading…
Add table
Reference in a new issue