Files
mcb-platform-monorepo/commitlint.config.js
T
2025-11-11 15:41:36 +03:00

10 lines
318 B
JavaScript

module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'type-enum': [2, 'always', ['feat', 'fix', 'chore', 'docs', 'style', 'refactor', 'test', 'build', 'ci', 'revert', 'perf']],
'scope-empty': [2, 'never'],
'scope-case': [0],
'body-max-line-length': [2, 'always', 150],
},
};