scratch-semantic-release-co.../commitlint.config.js
Christopher Willis-Ford e254188550 fix(commitlint): tell commitlint to ignore release commits
This is sometimes necessary because the combination of semantic-release
and Renovate or Dependabot can lead to very long changelog lines.
2022-08-26 10:37:38 -07:00

4 lines
136 B
JavaScript

module.exports = {
extends: ['@commitlint/config-conventional'],
ignores: [message => message.startsWith('chore(release):')]
};