fix: avoids local ruff mismatch
This commit is contained in:
parent
a452912b36
commit
98a8f529e1
3 changed files with 24 additions and 33 deletions
|
|
@ -1,3 +1,5 @@
|
|||
line-length = 100
|
||||
|
||||
[lint]
|
||||
extend-select = [
|
||||
# "PLC0103", # invalid-name
|
||||
|
|
@ -347,6 +349,7 @@ extend-ignore = [
|
|||
# "PLR1705", # no-else-return
|
||||
# "PLR1706", # consider-using-ternary
|
||||
# "PLR1707", # trailing-comma-tuple
|
||||
"PLR1708", # stop-iteration-return
|
||||
# "PLR1709", # simplify-boolean-expression
|
||||
# "PLR1710", # inconsistent-return-statements
|
||||
"PLR1711", # useless-return
|
||||
|
|
@ -391,4 +394,3 @@ extend-ignore = [
|
|||
# "PLW1404", # implicit-str-concat
|
||||
]
|
||||
|
||||
|
||||
|
|
|
|||
Reference in a new issue