module.exports = { // types, types: [ { value: 'feat', name: 'โœจ A new feature', }, { value: 'fix', name: '๐Ÿ› A bug fix', }, { value: 'docs', name: '๐Ÿ“ Documentation only changes', }, { value: 'style', name: '๐Ÿ’„ Updating the UI and style files.', }, { value: 'test', name: '๐Ÿงช Adding or changing the tests.', }, { value: 'refactor', name: '๐Ÿ”จ A code change that neither fixes a bug nor adds a feature.', }, { value: 'chore', name: '๐Ÿšง Updating grunt tasks etc; no production code change.', }, { value: 'perf', name: 'โšก๏ธ Improving the performance.', }, { value: 'build', name: '๐Ÿ“ฆ๏ธ Building stuff.', } ], scopes: [], scopeOverrides: { ':wrench: docs': [{ name: ':wrench: docs' }, { name: ':bulb: docs_code' }], }, // override the messages, defaults are as follows messages: { type: "Select the type of change that you're committing:", scope: '\nDenote the SCOPE of this change (optional):', // used if allowCustomScopes is true customScope: 'Denote the SCOPE of this change:', subject: 'Write a SHORT, IMPERATIVE tense description of the change:\n', body: 'Provide a LONGER description of the change (optional). Use "|" to break new line:\n', breaking: 'List any BREAKING CHANGES (optional):\n', footer: 'List any ISSUES CLOSED by this change (optional). E.g.: #31, #34:\n', confirmCommit: 'Are you sure you want to proceed with the commit above?', }, subjectLimit: 72, allowCustomScopes: false, allowBreakingChanges: ['feat', 'fix'], };