From 778275575e79d046b3d10d62e5fbc419ad79a5ae Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Wed, 4 Jan 2023 22:35:37 -0800 Subject: [PATCH] ruff: Ignore RUF002 for consistency. Signed-off-by: Anders Kaseorg --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 0d2dc0bb34..9807b57c30 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -139,6 +139,7 @@ ignore = [ "N802", # Function name should be lowercase "N806", # Variable in function should be lowercase "RUF001", # String contains ambiguous unicode character + "RUF002", # Docstring contains ambiguous unicode character "RUF003", # Comment contains ambiguous unicode character "S101", # Use of `assert` detected "S105", # Possible hardcoded password