commitlint.config.js 512 B

12345678910111213141516
  1. //git commit -m <type>[optional scope]: <description>
  2. module.exports = {
  3. extends: ['@commitlint/config-conventional']
  4. // rules: {
  5. // 'type-enum': [2, 'always', [
  6. // 'feature', 'update', 'fixbug', 'refactor', 'optimize', 'style', 'docs', 'chore'
  7. // ]],
  8. // 'type-case': [0],
  9. // 'type-empty': [0],
  10. // 'scope-empty': [0],
  11. // 'scope-case': [0],
  12. // 'subject-full-stop': [0, 'never'],
  13. // 'subject-case': [0, 'never'],
  14. // 'header-max-length': [0, 'always', 72]
  15. // }
  16. };