Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .cursor/rules/prefer-ascii.mdc
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
description: Prefer ASCII-centric characters in all written output
alwaysApply: true
---

# Prefer ASCII-centric characters

In all written output (chat replies, GitHub comments, commit messages, docs, PR bodies, and similar prose):

- Prefer `->` instead of arrow glyphs (no `→`, `⇒`, `←`, etc.)
- Prefer `...` instead of single-character ellipses (no `…`)
- Prefer straight single and double quotes (`'` and `"`) instead of curly/smart quotes
- Prefer `-` instead of long dashes (no `–`, `—`)
- No emoji or similar decorative characters/glyphs

Use plain ASCII unless a non-ASCII character is required for correctness (e.g. a code identifier, file path, or user-facing string that already contains it).