diff options
author | Jean-François B <2589111+jfbu@users.noreply.github.com> | 2023-01-22 18:50:29 +0100 |
---|---|---|
committer | Jean-François B <2589111+jfbu@users.noreply.github.com> | 2023-01-22 18:54:22 +0100 |
commit | 6845c3fd9600294564d9c27be3fbeaf8da9ff60d (patch) | |
tree | dd8e2b478c155a87f1c67039130e834584b19cd3 | |
parent | 3362021cfb005090822307e6ac7d86eb0091fca9 (diff) | |
download | sphinx-git-6845c3fd9600294564d9c27be3fbeaf8da9ff60d.tar.gz |
Ignore UP031 check with Ruff 0.0.229
-rw-r--r-- | pyproject.toml | 2 |
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", |