docs: contrib add a note about unicode in code (#2106)

# What does this PR do?

Don't use unicode characters in the codebase. ASCII-only is preferred
for compatibility or readability reasons

Signed-off-by: Sébastien Han <seb@redhat.com>
This commit is contained in:
Sébastien Han 2025-05-06 18:50:30 +02:00 committed by GitHub
parent b9b13a3670
commit 7377a5c83e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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