mirror of
https://github.com/fromchat-messenger/app.git
synced 2026-09-22 19:15:05 +03:00
Implement new account deletion and auth flows
Signed-off-by: denis0001-dev <denis0001.dev@ya.ru>
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
---
|
||||
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
|
||||
```
|
||||
Reference in New Issue
Block a user