Emdashless

This commit is contained in:
2026-06-07 21:27:59 -05:00
parent dc41c0e302
commit be68fe5a35
40 changed files with 117 additions and 107 deletions
+10
View File
@@ -233,6 +233,16 @@ apply any changes before finishing the task.
## Coding style
### ASCII only
Source files (`.c`, `.h`, `.js`) must contain only ASCII characters (U+0000U+007F).
Non-ASCII characters are banned even in comments and string literals.
Use ASCII-only substitutes instead:
- `--` or `-` instead of `` (em dash)
- `->` instead of `` (arrow)
- `x` or `*` instead of `×` (multiplication)
Only non-script asset files (e.g. `.po` locale files) may contain non-ASCII text.
### Indentation
2 spaces. No tabs.