Disable some rules that warn when using ruff's preview mode (#2985)

This commit is contained in:
correctmost 2024-12-01 01:50:33 -05:00 committed by GitHub
parent 8fa5ec15af
commit fcf9658f8f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

@ -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