Ignore UP031 check with Ruff 0.0.229

This commit is contained in:
Jean-François B 2023-01-22 18:50:29 +01:00
parent 3362021cfb
commit 6845c3fd96

View File

@ -171,6 +171,8 @@ ignore = [
"SIM105", # use contextlib.suppress "SIM105", # use contextlib.suppress
"SIM108", # use ternary operator "SIM108", # use ternary operator
"SIM117", # use single 'with' statement "SIM117", # use single 'with' statement
# pyupgrade
"UP031", # replace with format specifiers
] ]
external = [ # Whitelist for RUF100 unkown code warnings external = [ # Whitelist for RUF100 unkown code warnings
"E704", "E704",