We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 025bfc6 commit 26d5cf7Copy full SHA for 26d5cf7
1 file changed
.cascade
@@ -0,0 +1,23 @@
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
0 commit comments