-
commitlint-plugin-commit-check: 检测提交信息是否为英文
资源介绍
commitlint-plugin-commit-check
检查提交的提交中是否包含中文。
安装
npm install commitlint - plugin - commit - check -- save - dev
用法
在您的commitlint.config.js中:
module . exports = {
rules : {
"check-commit-language" : [ 2 , "always" ] ,
} ,
plugins : [ "commitlint-plugin-commit-check" ] ,
} ;