forked from Gimligili/Sokoban.Java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.cascade
More file actions
36 lines (32 loc) · 1.25 KB
/
.cascade
File metadata and controls
36 lines (32 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Cascade AI Assistant Configuration
# This file controls how the AI assistant should behave
[behavior]
# Only make the exact changes requested
# No additional refactoring or improvements unless explicitly asked for
strict_mode = true
# Don't create getter methods unless they're actually needed
avoid_unnecessary_getters = true
# Method ordering: helper methods after their callers
# Test names should be propositional (e.g., "returns_true_when_condition_met")
propositional_test_names = true
helper_methods_after_caller = true
[editing]
# Only edit the specific lines or files mentioned
# Don't suggest or make additional changes
make_minimal_changes = true
# Code formatting
no_trailing_spaces = true
# Align related assignment statements in columns when they appear together
align_related_assignments = true
# Avoid comments that state the obvious or repeat the code
avoid_superfluous_comments = true
[testing]
# Assertion messages should be propositional statements
# - Should be clear, testable statements of fact
# - Present tense is preferred (e.g., "is" instead of "should be")
# - Should describe the expected state/behavior
propositional_assertion_messages = true
[communication]
# Be direct and to the point
# Don't suggest alternatives unless asked
be_direct = true