Skip to content

Instantly share code, notes, and snippets.

@bobbyg603
Created February 17, 2022 22:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bobbyg603/aface407106417c34a6b241843b11374 to your computer and use it in GitHub Desktop.
Save bobbyg603/aface407106417c34a6b241843b11374 to your computer and use it in GitHub Desktop.
Commitlint configuration file with a few extra rules to make generating release notes easier
module.exports = {
extends: [
'@commitlint/config-conventional'
],
rules: {
'body-max-line-length': [0, 'always'],
'footer-max-line-length': [0, 'always']
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment