Skip to content

Commit 147a326

Browse files
committed
Refactoring about Output format
1 parent 24d4d9c commit 147a326

13 files changed

Lines changed: 17 additions & 17 deletions

.cursor/rules/100-java-checklist-guide.mdc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Create a markdown file named `CURSOR-RULES-JAVA.md` with the following exact str
2626
- **ONLY** use the exact wording and structure from the template
2727
- If a cursor rule exists in the workspace but is not in the template, **DO NOT** include it
2828

29-
## Output Requirements
29+
## Output Format
3030

3131
- Generate the complete markdown file following the embedded template exactly
3232
- Use proper markdown formatting with headers, code blocks, tables, and checklists

.cursor/rules/110-java-maven-best-practices.mdc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ Description: Define all dependency and plugin versions in the `<properties>` sec
584584
</project>
585585

586586
```
587-
## Output Requirements
587+
## Output Format
588588

589589
- Update the file pom.xml if something is not correct
590590
- verify changes with the command: `mvn validate`

.cursor/rules/112-java-maven-documentation.mdc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Create a markdown file named `README-DEV.md` with the following exact structure:
2424
- **ONLY** use the exact wording and structure from the template
2525
- If a cursor rule exists in the workspace but is not in the template, **DO NOT** include it
2626

27-
## Output Requirements
27+
## Output Format
2828

2929
- Generate the complete markdown file following the embedded template exactly
3030
- Use proper markdown formatting with headers, code blocks, tables, and checklists

.cursor/rules/121-java-object-oriented-design.mdc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2466,8 +2466,8 @@ public class FileManager {
24662466
}
24672467
}
24682468
```
2469-
## Output Requirements
2469+
## Output Format
24702470

24712471
- Apply object-oriented design principles to improve code quality and maintainability
24722472
- Refactor code to follow SOLID principles and eliminate design smells
2473-
- Verify code changes compile and pass tests
2473+
- Verify code changes compile and pass tests

.cursor/rules/122-java-type-design.mdc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -851,7 +851,7 @@ class BadProductService {
851851
}
852852
}
853853
```
854-
## Output Requirements
854+
## Output Format
855855

856856
- Apply type design principles to improve code quality and maintainability
857857
- Create type-safe wrappers for domain-specific types

.cursor/rules/123-java-general-guidelines.mdc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -328,8 +328,8 @@ public class UnsafeFileProcessor {
328328
}
329329
}
330330
```
331-
## Output Requirements
331+
## Output Format
332332

333333
- Apply the Java general guidelines to improve code quality and maintainability
334334
- Follow naming conventions, formatting rules, and documentation standards
335-
- Implement comprehensive error handling with security considerations
335+
- Implement comprehensive error handling with security considerations

generator/src/main/resources/cursor-rules.xsl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ Description: </xsl:text> <xsl:value-of select="normalize-space(example-de
122122
<!-- Output format section template -->
123123
<xsl:template match="output-format">
124124
<xsl:text>
125-
## Output Requirements
125+
## Output Format
126126

127127
</xsl:text>
128128
<xsl:for-each select="output-format-list/output-format-item">

generator/src/test/resources/100-java-checklist-guide.mdc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Create a markdown file named `CURSOR-RULES-JAVA.md` with the following exact str
2626
- **ONLY** use the exact wording and structure from the template
2727
- If a cursor rule exists in the workspace but is not in the template, **DO NOT** include it
2828

29-
## Output Requirements
29+
## Output Format
3030

3131
- Generate the complete markdown file following the embedded template exactly
3232
- Use proper markdown formatting with headers, code blocks, tables, and checklists

generator/src/test/resources/110-java-maven-best-practices.mdc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ Description: Define all dependency and plugin versions in the `<properties>` sec
584584
</project>
585585

586586
```
587-
## Output Requirements
587+
## Output Format
588588

589589
- Update the file pom.xml if something is not correct
590590
- verify changes with the command: `mvn validate`

generator/src/test/resources/112-java-maven-documentation.mdc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Create a markdown file named `README-DEV.md` with the following exact structure:
2424
- **ONLY** use the exact wording and structure from the template
2525
- If a cursor rule exists in the workspace but is not in the template, **DO NOT** include it
2626

27-
## Output Requirements
27+
## Output Format
2828

2929
- Generate the complete markdown file following the embedded template exactly
3030
- Use proper markdown formatting with headers, code blocks, tables, and checklists

0 commit comments

Comments
 (0)