Fork from bluejay at github and modified for my custom ESC. I need to modify it because some mistake design on my ESC hardware.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
692 B

4 years ago
4 years ago
  1. module.exports = {
  2. parserPreset: 'conventional-changelog-conventionalcommits',
  3. rules: {
  4. 'body-leading-blank': [2, 'always'],
  5. 'body-max-line-length': [2, 'always', 100],
  6. 'footer-leading-blank': [2, 'always'],
  7. 'footer-max-line-length': [2, 'always', 100],
  8. 'header-max-length': [2, 'always', 100],
  9. 'scope-case': [2, 'always', 'lower-case'],
  10. 'subject-case': [2, 'always', ['sentence-case']],
  11. 'subject-empty': [2, 'never'],
  12. 'subject-full-stop': [2, 'never', '.'],
  13. 'type-case': [2, 'always', 'lower-case'],
  14. 'type-empty': [2, 'never'],
  15. 'type-enum': [2, 'always',
  16. ['build', 'chore', 'ci', 'docs', 'feat', 'fix', 'perf', 'refactor', 'revert', 'style', 'test']
  17. ],
  18. },
  19. };