From d0bd6ce2ceb835fa1c2f6471feaac2443a245f1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Han?= Date: Tue, 6 May 2025 11:32:50 +0200 Subject: [PATCH] docs: contrib add a note about unicode in code MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Don't use unicode characters in the codebase. ASCII-only is preferred for compatibility or readability reasons Signed-off-by: Sébastien Han --- CONTRIBUTING.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 17eed43c5..c8df2d058 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -153,6 +153,8 @@ uv sync justification for bypassing the check. * When using `# type: ignore` to suppress a mypy warning, include a comment explaining the justification for bypassing the check. +* Don't use unicode characters in the codebase. ASCII-only is preferred for compatibility or + readability reasons. ## Common Tasks