-
Notifications
You must be signed in to change notification settings - Fork 0
commitlint config for lerna repos
文蔺 edited this page Mar 8, 2019
·
2 revisions
module.exports = {
rules: {
'type-enum': [
2,
'always',
[
'WIP',
'build',
'chore',
'ci',
'docs',
'feat',
'fix',
'perf',
'refactor',
'revert',
'style',
'test'
]
]
},
extends: [
'@commitlint/config-lerna-scopes',
'@commitlint/config-conventional'
]
}yarn add --dev @commitlint/cli \
@commitlint/config-conventional \
@commitlint/config-lerna-scopes \
commitizen \
cz-lerna-changelog