build: tell commitlint to ignore release commits instead of disabling Husky during semantic-release

This commit is contained in:
Christopher Willis-Ford 2022-08-26 10:14:49 -07:00
parent 6ea2f5813f
commit 582c011988
2 changed files with 3 additions and 5 deletions

View file

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