feat: 增加 commitlint,每次 commit 信息都会做校验

This commit is contained in:
杭城小刘
2020-02-25 18:06:23 +08:00
parent 6e99436a9e
commit 47846f9af0
4 changed files with 1616 additions and 0 deletions

30
package.json Normal file
View File

@@ -0,0 +1,30 @@
{
"name": "knowledge-kit",
"version": "1.0.0",
"description": "大前端知识小集",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FantasticLBP/knowledge-kit.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FantasticLBP/knowledge-kit/issues"
},
"homepage": "https://github.com/FantasticLBP/knowledge-kit#readme",
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"husky": "^4.2.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}