commitlint.config.js 191 Bytes
Newer Older
1
module.exports = {
2
  extends: ['@commitlint/config-conventional'],
3
  rules: {
4 5 6
    'scope-case': [0],
    'subject-case': [2, 'always', 'sentence-case'],
    'header-max-length': [0],
7 8
  },
};