-
Notifications
You must be signed in to change notification settings - Fork 295
Conversation
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.
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.
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.
/.idea/.gitignore | ||
/.idea/ai-pr-reviewer.iml | ||
/.idea/codeStyles/codeStyleConfig.xml | ||
/.idea/misc.xml | ||
/.idea/modules.xml | ||
/.idea/codeStyles/Project.xml | ||
/.idea/inspectionProfiles/Project_Default.xml | ||
/.idea/vcs.xml |
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 changes to the .gitignore
file seem to be ignoring IDE-specific files, which is a good practice. However, instead of listing each file in the .idea
directory individually, you can ignore the entire directory by simply adding /.idea/
. This will make your .gitignore
file cleaner and easier to maintain.
- /.idea/.gitignore
- /.idea/ai-pr-reviewer.iml
- /.idea/codeStyles/codeStyleConfig.xml
- /.idea/misc.xml
- /.idea/modules.xml
- /.idea/codeStyles/Project.xml
- /.idea/inspectionProfiles/Project_Default.xml
- /.idea/vcs.xml
+ /.idea/
Summary by CodeRabbit
COMMENT_GREETING
constant and updated theCommenter
class to reduce comment verbosity insrc/commenter.ts
.submitReview
method by removing thestatusMsg
parameter and corresponding logic insrc/review.ts
.