It would be nice to configure how long a commit message is before it displays the warning. Some repos I work on allow a 75 char line length, while others allow 100. I know we can enable/disable via git.enableLongCommitWarning config. Would be nice to add one more config for length.
Steps to Reproduce:
GitHub shows the first 70 characters and GitLab shows the first 80. Would be nice to have this configurable so users can work to those limits.
I was just about to post this as a request.
I think that if the warning only shows a character count instead of the remaining characters there is no needs to configure the characters warning limit. It could just show the text length number.
I think these are the relevant lines:


@mittalyashu How is that related to this issue?
Moreover, you can write commit messages longer than 72 characters. If you don't want that warning, there's a configuration option to disable it.
Moreover, you can write commit messages longer than 72 characters. If you don't want that warning, there's a configuration option to disable it.
@pradyunsg, how to do it?
// Controls when to show commit message input validation.
"git.inputValidation": "warn"
It can take the values always, warn, off. To disable it, use off.
Starting next release, you can control this with git.inputValidationLength.
@joaomoreno Awesome! Thanks for this!
Most helpful comment
Starting next release, you can control this with
git.inputValidationLength.