test commit lint

This commit is contained in:
程沛权 2021-06-16 11:21:21 +08:00
parent b4457614a9
commit 708a418598
2 changed files with 18 additions and 0 deletions

17
.commitlintrc.js Normal file
View File

@ -0,0 +1,17 @@
module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'type-enum': [
2,
'always',
['upd', 'feat', 'fix', 'refactor', 'docs', 'chore', 'style', 'revert'],
],
'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],
},
}

View File

@ -57,6 +57,7 @@
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E $HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},