mirror of
https://github.com/saltstack-formulas/openssh-formula.git
synced 2025-07-21 00:28:22 +02:00
15 lines
452 B
JavaScript
15 lines
452 B
JavaScript
module.exports = {
|
|
extends: ['@commitlint/config-conventional'],
|
|
rules: {
|
|
'body-max-line-length': [2, 'always', 120],
|
|
'footer-max-line-length': [2, 'always', 120],
|
|
'header-max-length': [2, 'always', 72]
|
|
},
|
|
ignores: [
|
|
(commit) => commit.startsWith('chore(copier):'),
|
|
(commit) => commit.startsWith('chore(deps):'),
|
|
(commit) => commit.startsWith('ci(pre-commit.ci):'),
|
|
(commit) => commit.startsWith('[CI merge]')
|
|
]
|
|
}
|