fix: Remove all emojis from documentation for cross-platform compliance
Replaced 50+ emoji types with ASCII text markers for consistent rendering across all terminals, editors, and operating systems: - Checkmarks/status: [OK], [DONE], [SUCCESS], [PASS] - Errors/warnings: [ERROR], [FAIL], [WARNING], [CRITICAL] - Actions: [DO], [DO NOT], [REQUIRED], [OPTIONAL] - Navigation: [NEXT], [PREVIOUS], [TIP], [NOTE] - Progress: [IN PROGRESS], [PENDING], [BLOCKED] Additional changes: - Made paths cross-platform (~/ClaudeTools for Mac/Linux) - Fixed database host references to 172.16.3.30 - Updated START_HERE.md and CONTEXT_RECOVERY_PROMPT.md for multi-OS use Files updated: 58 markdown files across: - .claude/ configuration and agents - docs/ documentation - projects/ project files - Root-level documentation This enforces the NO EMOJIS rule from directives.md and ensures documentation renders correctly on all systems. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -18,10 +18,10 @@ All emoji characters have been replaced with ASCII text markers per coding guide
|
||||
|-------|-------------|---------|
|
||||
| ✓ | [OK] or [PASS] | Success indicators |
|
||||
| ✗ | [FAIL] | Failure indicators |
|
||||
| ⚠ or ⚠️ | [WARNING] | Warning messages |
|
||||
| ❌ | [ERROR] or [FAIL] | Error indicators |
|
||||
| ✅ | [SUCCESS] or [PASS] | Success messages |
|
||||
| 📚 | (removed) | Unused emoji |
|
||||
| ⚠ or [WARNING] | [WARNING] | Warning messages |
|
||||
| [ERROR] | [ERROR] or [FAIL] | Error indicators |
|
||||
| [OK] | [SUCCESS] or [PASS] | Success messages |
|
||||
| [DOCS] | (removed) | Unused emoji |
|
||||
|
||||
### Files Modified
|
||||
|
||||
@@ -45,7 +45,7 @@ All emoji characters have been replaced with ASCII text markers per coding guide
|
||||
- Verification: PASS
|
||||
|
||||
**4. test_models_detailed.py**
|
||||
- Changes: `"❌ Error"` → `"[ERROR] Error"`, `"✅ Analysis complete"` → `"[SUCCESS] Analysis complete"`
|
||||
- Changes: `"[ERROR] Error"` → `"[ERROR] Error"`, `"[OK] Analysis complete"` → `"[SUCCESS] Analysis complete"`
|
||||
- Lines: 163, 202
|
||||
- Violations fixed: 2
|
||||
- Verification: PASS
|
||||
@@ -182,7 +182,7 @@ All shell scripts have valid bash syntax (verified where possible):
|
||||
### Remaining Violations
|
||||
Final scan for emoji violations in code files:
|
||||
```bash
|
||||
grep -r "✓\|✗\|⚠\|❌\|✅\|📚" --include="*.py" --include="*.sh" --include="*.ps1" \
|
||||
grep -r "✓\|✗\|⚠\|[ERROR]\|[OK]\|[DOCS]" --include="*.py" --include="*.sh" --include="*.ps1" \
|
||||
--exclude-dir=venv --exclude-dir="api/venv" .
|
||||
```
|
||||
**Result:** 0 violations found
|
||||
|
||||
Reference in New Issue
Block a user