0
0
mirror of https://github.com/saltstack-formulas/openssh-formula.git synced 2025-07-21 22:14:33 +02:00
openssh-formula/commitlint.config.js
2025-06-08 17:05:19 +01:00

13 lines
375 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(deps):"),
(commit) => commit.startsWith("[CI merge]")
],
};