-
Notifications
You must be signed in to change notification settings - Fork 17
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
Ignore large files when building the diff for welcome and review purposes #2173
Comments
Gathering additional information, please wait... done! Title: Ignore Large Files When Building Diff for Welcome and Review Problem: The current system does not ignore large files when building diffs for generating user questions and performing code reviews. This can lead to inefficiencies and irrelevant suggestions, particularly with files like Analysis: In the context of suggesting user questions and performing code reviews, large file changes might not provide relevant information and could unnecessarily complicate the change analysis. The The solution should involve determining whether a file is large before it is included in the diff analysis used for generating suggestions and reviews. This will prevent large files from altering the logic of change analysis and keep the focus on more meaningful modifications. The file size checking logic should already partially exist as seen in the presence of functions like Proposed Changes:
By implementing these modifications, you should be able to ignore large files from the change analysis processes used in suggestions and code reviews, consequently focusing only on differences in smaller, more pertinent files. |
When examining the diff to suggest user questions and to perform code review, ignore large file diffs. A typical example would be yarn.lock.
The text was updated successfully, but these errors were encountered: