mirror of
https://github.com/NohamR/knowledge-kit.git
synced 2026-05-24 20:00:37 +00:00
feat: 增加 commitlint,每次 commit 信息都会做校验
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
node_modules
|
||||
36
commitlint.config.js
Normal file
36
commitlint.config.js
Normal file
@@ -0,0 +1,36 @@
|
||||
const types = [
|
||||
'build',
|
||||
'ci',
|
||||
'chore',
|
||||
'docs',
|
||||
'feat',
|
||||
'fix',
|
||||
'pref',
|
||||
'refactor',
|
||||
'revert',
|
||||
'style',
|
||||
'test'
|
||||
];
|
||||
|
||||
typeEnum = {
|
||||
rules: {
|
||||
'type-enum': [2, 'always', types]
|
||||
},
|
||||
value: () => types
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
extends: [
|
||||
"@commitlint/config-conventional"
|
||||
],
|
||||
rules: {
|
||||
'type-case': [0],
|
||||
'type-empty': [0],
|
||||
'scope-empty': [0],
|
||||
'scope-case': [0],
|
||||
'subject-full-stop': [0, 'never'],
|
||||
'subject-case': [0, 'never'],
|
||||
'header-max-length': [0, 'always', 72],
|
||||
'type-enum': typeEnum.rules['type-enum']
|
||||
}
|
||||
};
|
||||
1549
package-lock.json
generated
Normal file
1549
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
30
package.json
Normal file
30
package.json
Normal 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"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user