mirror of
https://github.com/fromchat-messenger/app.git
synced 2026-09-22 19:15:05 +03:00
306458bcd8
Signed-off-by: denis0001-dev <denis0001.dev@ya.ru>
23 lines
535 B
Plaintext
23 lines
535 B
Plaintext
---
|
|
description: Do not use ripgrep (rg) in shell commands or scripts
|
|
alwaysApply: true
|
|
---
|
|
|
|
# Never use `rg`
|
|
|
|
Do **not** run `rg` / ripgrep in terminal commands. It is unreliable in this environment.
|
|
|
|
## Use instead
|
|
|
|
- **Cursor Grep tool** — preferred for searching the codebase
|
|
- **`grep -r`** — if a shell search is truly needed
|
|
- **Glob / SemanticSearch** — for finding files or concepts
|
|
|
|
```bash
|
|
# ❌ BAD
|
|
rg "probeCurrentServer" app/shared
|
|
|
|
# ✅ GOOD — use the Grep tool, or:
|
|
grep -r "probeCurrentServer" app/shared
|
|
```
|