Skip to content

Commit ce76dee

Browse files
committed
Vision review
1 parent f2a91f9 commit ce76dee

2 files changed

Lines changed: 154 additions & 41 deletions

File tree

.cursor/index.mdc

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
alwaysApply: true
3+
---
4+
# Global Rules
5+
6+
- Check requirements/vision each time
7+
- If in doubt ask user
8+
9+
## Code Style
10+
11+
- Comments in English only
12+
- Follow DRY, KISS, and YAGNI principles
13+
- Check if logic already exists before writing new code
14+
- Avoid untyped variables and generic types
15+
- Never use default parameter values - make all parameters explicit
16+
- Create proper type definitions for complex data structures
17+
- All imports at the top of the file
18+
- Write simple single-purpose functions — no multi-mode behavior, no flag parameters that switch logic. If the user needs multiple modes, they will ask explicitly
19+
20+
## Code Changes
21+
22+
- Suggest only minimal changes related to current dialog
23+
- Change as few lines as possible while solving the problem
24+
- Focus only on what user is asking for - no extra improvements

0 commit comments

Comments
 (0)