Add if-key-in-dict-del ruff rule to ignore list (#3082)
The rule is concerned with code style rather than correctness or performance.
This commit is contained in:
parent
e712144e5d
commit
25b7bbb0ed
|
|
@ -212,6 +212,7 @@ ignore = [
|
||||||
"RUF012", # mutable-class-default
|
"RUF012", # mutable-class-default
|
||||||
"RUF015", # unnecessary-iterable-allocation-for-first-element
|
"RUF015", # unnecessary-iterable-allocation-for-first-element
|
||||||
"RUF039", # unraw-re-pattern
|
"RUF039", # unraw-re-pattern
|
||||||
|
"RUF051", # if-key-in-dict-del
|
||||||
"UP037", # quoted-annotation
|
"UP037", # quoted-annotation
|
||||||
"W191", # tab-indentation
|
"W191", # tab-indentation
|
||||||
]
|
]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue