git-commit-guide
Version:
Commitizen adapter following the conventional-changelog format and also asking for JIRA issue with Smart Commits.
15 lines (13 loc) • 338 B
JavaScript
const conventionalCommitTypes = require('./types');
const workflowTransitions = require('./workflows');
module.exports = {
types: conventionalCommitTypes,
jiraMode: true,
skipScope: false,
maxHeaderWidth: 72,
minHeaderWidth: 2,
maxLineWidth: 72,
jiraPrefix: 'JNR',
jiraOptional: true,
workflows: workflowTransitions
};