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.
This commit is contained in:
Christopher Willis-Ford 2022-08-26 10:34:16 -07:00
parent 15e2da15a4
commit e254188550

View file

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