We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently, there is a limit of max_comments / 5 for comments in any one file. https://github.com/guykisel/inline-plz/blob/master/inlineplz/interfaces/github.py#L183-L187
max_comments / 5
If a PR has a ton of change in one file, and not so much in others, it would be nice to allow more comments in that heavily-changed file.
Proposal: calculate the per-file comment limit as: (lines changed in this file / total lines in the diff) * max_comments
lines changed in this file
total lines in the diff
max_comments
The text was updated successfully, but these errors were encountered:
raphaelcastaneda
No branches or pull requests
Currently, there is a limit of
max_comments / 5
for comments in any one file.https://github.com/guykisel/inline-plz/blob/master/inlineplz/interfaces/github.py#L183-L187
If a PR has a ton of change in one file, and not so much in others, it would be nice to allow more comments in that heavily-changed file.
Proposal: calculate the per-file comment limit as: (
lines changed in this file
/total lines in the diff
) *max_comments
The text was updated successfully, but these errors were encountered: