mirror of
https://github.com/scratchfoundation/scratch-semantic-release-config.git
synced 2024-11-23 16:08:09 -05:00
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:
parent
15e2da15a4
commit
e254188550
1 changed files with 2 additions and 1 deletions
|
@ -1,3 +1,4 @@
|
|||
module.exports = {
|
||||
extends: ['@commitlint/config-conventional']
|
||||
extends: ['@commitlint/config-conventional'],
|
||||
ignores: [message => message.startsWith('chore(release):')]
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue