RedJue / git-commit-plugin

Automatically generate git commit
https://marketplace.visualstudio.com/items?itemName=redjue.git-commit-plugin
MIT License
191 stars 49 forks source link

手动配置type字符格式 #26

Closed NingYi0401 closed 3 years ago

NingYi0401 commented 3 years ago

不知道能否手动配置文件,将:string的格式设置为[type]string呢?因工作需要,当前格式与默认git commit template有所出入,需要实现[feat] just for commit test类似的commit type格式,不知道是否支持手动配置或者修改?

RedJue commented 3 years ago

不知道能否手动配置文件,将:string的格式设置为[type]string呢?因工作需要,当前格式与默认git commit template有所出入,需要实现[feat] just for commit test类似的commit type格式,不知道是否支持手动配置或者修改?

本插件默认是遵从 angular 的提交规范的,如果需要自己修改额外的格式,可以 fork 本仓库,修改 这里 函数的返回格式,然后自己执行 npm run build 脚本,将生成的 .vsix 文件通过 vscode 安装即可。

NingYi0401 commented 3 years ago

感谢指导