File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed
Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change 1+ # Cascade AI Assistant Configuration
2+ # This file controls how the AI assistant should behave
3+
4+ [behavior]
5+ # Only make the exact changes requested
6+ # No additional refactoring or improvements unless explicitly asked for
7+ strict_mode = true
8+ # Don't create getter methods unless they're actually needed
9+ avoid_unnecessary_getters = true
10+ # Method ordering: helper methods after their callers
11+ helper_methods_after_caller = true
12+
13+ [editing]
14+ # Only edit the specific lines or files mentioned
15+ # Don't suggest or make additional changes
16+ make_minimal_changes = true
17+ # Code formatting
18+ no_trailing_spaces = true
19+
20+ [communication]
21+ # Be direct and to the point
22+ # Don't suggest alternatives unless asked
23+ be_direct = true
You can’t perform that action at this time.
0 commit comments