Disable the loop-iterator-mutation rule in ruff (#3450)
This allows ruff check --preview to succeed again.
This commit is contained in:
parent
583945028f
commit
5cd5d714e9
|
|
@ -216,6 +216,7 @@ ignore = [
|
|||
"B008", # function-call-in-default-argument
|
||||
"B904", # raise-without-from-inside-except
|
||||
"B905", # zip-without-explicit-strict
|
||||
"B909", # loop-iterator-mutation
|
||||
"COM812", # missing-trailing-comma
|
||||
"PLC0415", # import-outside-top-level
|
||||
"PLC1901", # compare-to-empty-string
|
||||
|
|
|
|||
Loading…
Reference in New Issue