From fa9b01adecce7d2e2f0091a363bcf98cf5d5c378 Mon Sep 17 00:00:00 2001 From: MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> Date: Wed, 13 May 2026 09:53:13 +0200 Subject: [PATCH] ci: Enable ruff ambiguous-unicode-character checks --- ruff.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ruff.toml b/ruff.toml index 10df372c7a8..1c1867e39a3 100644 --- a/ruff.toml +++ b/ruff.toml @@ -34,6 +34,9 @@ select = [ "F823", # local variable name referenced before assignment "F841", # local variable 'foo' is assigned to but never used "PLE", # Pylint errors + "RUF001", # ambiguous-unicode-character-string + "RUF002", # ambiguous-unicode-character-docstring + "RUF003", # ambiguous-unicode-character-comment "W191", # indentation contains tabs "W291", # trailing whitespace "W292", # no newline at end of file