mirror of https://gitee.com/openkylin/npm.git
11 lines
363 B
JavaScript
11 lines
363 B
JavaScript
/* This file is automatically added by @npmcli/template-oss. Do not edit. */
|
|
|
|
module.exports = {
|
|
extends: ['@commitlint/config-conventional'],
|
|
rules: {
|
|
'type-enum': [2, 'always', ['feat', 'fix', 'docs', 'deps', 'chore']],
|
|
'header-max-length': [2, 'always', 80],
|
|
'subject-case': [0, 'always', ['lower-case', 'sentence-case', 'start-case']],
|
|
},
|
|
}
|