-
Notifications
You must be signed in to change notification settings - Fork 19
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
Make max length of body lines configurable #96
Make max length of body lines configurable #96
Conversation
Hi @Fryuni, |
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.
Thanks @Fryuni! LGTM, please see a minor suggestion regarding the text in the readme.
@Fryuni While you are at it, perhaps you want to add the option |
7a6d58c
to
82d93f2
Compare
@mristin I was off during the weekend. Rebased and implemented the configuration option for the subject line |
The limit of 72 characters is great for strict terminal use and some GUIs, but for teams that use only UIs such as GitHub Web it is an unnecessary restriction. This commit adds a `max-body-line-length` option to make this configurable Signed-off-by: Luiz Ferraz <[email protected]>
Signed-off-by: Luiz Ferraz <[email protected]>
Co-authored-by: Marko Ristin <[email protected]>
Signed-off-by: Luiz Ferraz <[email protected]>
Hi @Fryuni , |
Hi @Fryuni , I'll have some time from next Sunday on. |
Hey @mristin, I just didn't have the time during the week, but I'll do it today or tomorrow :) |
Signed-off-by: Luiz Ferraz <[email protected]>
82d93f2
to
492d854
Compare
Turns out I only needed to update the inputs in the tests, the major changes that got to master had no conflict with mine |
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.
LGTM! Please see a minor suggestion for the docs. Other than that, this PR is ready to be merged in.
Thanks!
Co-authored-by: Marko Ristin <[email protected]>
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.
LGTM! Ready for merge?
Seems ready to me |
@Fryuni thanks again! I'm going to release a new minor version next week. |
The limit of 72 characters is great for strict terminal use and some
GUIs, but for teams that use only UIs such as GitHub Web it is an
unnecessary and harsh restriction.
This PR adds a
max-body-line-length
option to make thisconfigurable.
Signed-off-by: Luiz Ferraz [email protected]