@cgj/k-view
Version:
``` npm i @cgj/k-view ```
79 lines • 1.83 kB
JavaScript
module.exports = {
"disableEmoji": false,
"list": [
"init",
"test",
"feat",
"fix",
"chore",
"docs",
"refactor",
"style",
"ci",
"perf"
],
"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"
},
"style": {
"description": "Markup, white-space, formatting, missing semi-colons...",
"emoji": "🎨",
"value": "style"
},
"test": {
"description": "Adding missing tests ",
"emoji": "✅",
"value": "test"
},
"init": {
"description": "Initialize Repo",
"emoji": "🎉",
"value": "init"
}
}
};