老师,使用git cz总是报这个错误
来源:2-9 Commitizen助你规范化提交代码
大白前端
2021-11-06
PS D:\vue3后台前端综合解决方案\imooc_admin> git cz
cz-cli@4.2.4, cz-customizable@6.3.0
Unable to find a configuration file. Please refer to documentation to learn how to ser up: https://github.com/leonardoanalista/cz-customizable#steps "
Cannot read property ‘subjectLimit’ of null
PS D:\vue3后台前端综合解决方案\imooc_admin>
写回答
3回答
-
Fiora0
2022-01-19
经过研究,在package.json内的config里面加入如下内容即可搞定:
"cz-customizable": {
"config": "cz-config.js"
}
20 -
PeacefulWinter
2022-04-11
之所以找不到配置文件,是因为你的默认配置文件名少了一个 `.`。因此被 node 识别为一个自定义配置文件,需要手动指定一下:
正确名称:`.cz-config.js`
错误名称:`cz-config.js`
00 -
Sunday
2021-11-06
你好
错误说无法找到配置文件,你可以看下你的配置是否正确,配置文件单词拼写是否正确012022-01-19
相似问题