UNPKG

@cookbook/dot-notation

Version:

Object readings and complex transformations using dot notation syntax.

67 lines (66 loc) โ€ข 1.61 kB
module.exports = { disableEmoji: true, format: '{type}{scope}: {emoji}{subject}', list: ['chore', 'ci', 'docs', 'feat', 'fix', 'perf', 'refactor', 'revert', 'style', 'test'], maxMessageLength: 64, minMessageLength: 3, questions: ['type', 'scope', 'subject', 'body', 'breaking', 'issues', 'lerna'], scopes: [], types: { chore: { description: 'Build process or auxiliary tool changes', emoji: '๐Ÿค–', value: 'chore', }, ci: { description: 'CI related changes', emoji: '๐ŸŽก', value: 'ci', }, docs: { description: 'Documentation only changes', emoji: 'โœ๏ธ', value: 'docs', }, feat: { description: 'A new feature', emoji: 'โšœ๏ธ', value: 'feat', }, fix: { description: 'A bug fix', emoji: '๐Ÿ›', value: 'fix', }, perf: { description: 'A code change that improves performance', emoji: 'โšก๏ธ', value: 'perf', }, refactor: { description: 'A code change that neither fixes a bug or adds a feature', emoji: 'โ™ป๏ธ', value: 'refactor', }, release: { description: 'Create a release commit', emoji: '๐Ÿš€', value: 'release', }, revert: { description: 'Revert changes', emoji: 'โ†ฉ๏ธ', value: 'release', }, style: { description: 'Markup, white-space, formatting, missing semi-colons...', emoji: '๐Ÿ’„', value: 'style', }, test: { description: 'Adding missing tests', emoji: '๐Ÿงช', value: 'test', }, }, };g