-
Notifications
You must be signed in to change notification settings - Fork 112
new java and springboot base best practices #22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
new java and springboot base best practices #22
Conversation
@josephgonzales01 this is a great start! May I just suggest that you split Java and Spring instructions into their own individual files? |
suggestion applied |
This looks great. I'll ask it to be merged. Thanks @josephgonzales01 ! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
Adds foundational best practices and review instructions for Java and Spring Boot projects.
- Introduces
springboot.instructions.md
with guidelines for Spring Boot development. - Introduces
java.instructions.md
with Java-specific coding standards and checks.
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
File | Description |
---|---|
instructions/springboot.instructions.md | New Spring Boot development guidelines |
instructions/java.instructions.md | New Java development guidelines |
@@ -0,0 +1,58 @@ | |||
--- | |||
description: 'Guidelines for building Springboot base applications' | |||
applyTo: '**/*.java, **/*.kt,' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The glob pattern has a trailing comma inside the quotes ('**/.java, **/.kt,') which may cause the applyTo pattern to not match correctly; consider removing the trailing comma or splitting into a list of patterns.
applyTo: '**/*.java, **/*.kt,' | |
applyTo: '**/*.java, **/*.kt' |
Copilot uses AI. Check for mistakes.
@@ -0,0 +1,58 @@ | |||
--- | |||
description: 'Guidelines for building Springboot base applications' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The term 'Springboot' should be capitalized as 'Spring Boot' to match official naming conventions.
description: 'Guidelines for building Springboot base applications' | |
description: 'Guidelines for building Spring Boot base applications' |
Copilot uses AI. Check for mistakes.
@josephgonzales01 can you please review the steps documented here? Also, your PR is out of sync with the latest commit in the main branch. |
No description provided.