commitlint icon indicating copy to clipboard operation
commitlint copied to clipboard

Ignore commented lines?

Open eyefodder opened this issue 3 years ago • 3 comments

Is it possible to get commitlint to ignore commented lines? For example this commit message:

ops: update CommitLint allowed types
# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
#
# On branch DAY-36-enforce-git-hygeine
# Your branch is up to date with 'origin/DAY-36-enforce-git-hygeine'.
#
# Changes to be committed:
#	modified:   .commitlint.yml
#

will fail because there's not an empty line after ops: update CommitLint allowed types but given the rest of the lines are all commented out, I think it should pass? I'm also finding the same thing if e.g. some of the commented lines are longer than the rules (this often happens if the path to a modified file is long)

Cheers!

eyefodder avatar Aug 21 '22 18:08 eyefodder

I'd add to @eyefodder's point that anything that git commit -v ignores, so should commitlint.

danbernier avatar Sep 20 '22 14:09 danbernier

Yes, it would be lovely to have the git commit's cleanup of comments and verbose diff happen before commitlint sees the message.

This would shift the burden of maintaining the filtering of comments and diff's (in case of git commit -v) to git itself, instead of trying to emulate that (configurable) behavior. :thinking:

Unfortunately there seems to be no postprocess-commit-msg hook in the Committing-Workflow Hooks that we could use.

gumbo2k avatar Jun 27 '24 14:06 gumbo2k