summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-François B <2589111+jfbu@users.noreply.github.com>2023-01-22 18:50:29 +0100
committerJean-François B <2589111+jfbu@users.noreply.github.com>2023-01-22 18:54:22 +0100
commit6845c3fd9600294564d9c27be3fbeaf8da9ff60d (patch)
treedd8e2b478c155a87f1c67039130e834584b19cd3
parent3362021cfb005090822307e6ac7d86eb0091fca9 (diff)
downloadsphinx-git-6845c3fd9600294564d9c27be3fbeaf8da9ff60d.tar.gz
Ignore UP031 check with Ruff 0.0.229
-rw-r--r--pyproject.toml2
1 files changed, 2 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 35bad44f6..83d7b1e9b 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -171,6 +171,8 @@ ignore = [
"SIM105", # use contextlib.suppress
"SIM108", # use ternary operator
"SIM117", # use single 'with' statement
+ # pyupgrade
+ "UP031", # replace with format specifiers
]
external = [ # Whitelist for RUF100 unkown code warnings
"E704",