module.exports = { extends: ['@commitlint/config-conventional'], rules: { 'subject-case': [0, 'always'], 'scope-enum': [2, 'always', ['frontend', 'backend', 'api', 'docs', 'ci', 'devops']], 'type-enum': [ 2, 'always', ['feat', 'fix', 'docs', 'style', 'refactor', 'test', 'chore'] ] } };