Disable some rules that warn when using ruff's preview mode (#2985)
This commit is contained in:
parent
8fa5ec15af
commit
fcf9658f8f
|
|
@ -206,6 +206,10 @@ select = [
|
||||||
|
|
||||||
ignore = [
|
ignore = [
|
||||||
"E722", # bare-except
|
"E722", # bare-except
|
||||||
|
"PLC0415", # import-outside-top-level
|
||||||
|
"PLC1901", # compare-to-empty-string
|
||||||
|
"PLW1514", # unspecified-encoding
|
||||||
|
"PLW1641", # eq-without-hash
|
||||||
"PLW2901", # redefined-loop-name
|
"PLW2901", # redefined-loop-name
|
||||||
"RUF005", # collection-literal-concatenation
|
"RUF005", # collection-literal-concatenation
|
||||||
"RUF012", # mutable-class-default
|
"RUF012", # mutable-class-default
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue