diff --git a/commitlint.config.js b/commitlint.config.js index 911d406..02cdbac 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -1,37 +1,8 @@ module.exports = { extends: ['@commitlint/config-conventional'], rules: { - 'body-leading-blank': [1, 'always'], - 'footer-leading-blank': [1, 'always'], 'header-max-length': [2, 'always', 72], 'scope-case': [2, 'always', 'lower-case'], 'scope-empty': [2, 'never'], - 'subject-case': [ - 2, - 'never', - ['sentence-case', 'start-case', 'pascal-case', 'upper-case'] - ], - 'subject-empty': [2, 'never'], - 'subject-full-stop': [2, 'never', '.'], - 'type-case': [2, 'always', 'lower-case'], - 'type-empty': [2, 'never'], - 'type-enum': [ - 2, - 'always', - [ - 'build', - 'chore', - 'ci', - 'docs', - 'feat', - 'feature', - 'fix', - 'perf', - 'refactor', - 'revert', - 'style', - 'test' - ] - ] } };