UNPKG

create-iking-admin

Version:

金合技术中台脚手架

42 lines (41 loc) 884 B
/* * @Author: wfl * @LastEditors: wfl * @description: commit lint config * @updateInfo: * @Date: 2022-07-29 11:45:13 * @LastEditTime: 2022-08-01 16:10:54 */ module.exports = { ignores: [(commit) => commit.includes('init')], extends: ['@commitlint/config-conventional'], rules: { 'body-leading-blank': [2, 'always'], 'footer-leading-blank': [1, 'always'], 'header-max-length': [2, 'always', 108], 'subject-empty': [2, 'never'], 'type-empty': [2, 'never'], 'subject-case': [0], 'type-enum': [ 2, 'always', [ 'feat', 'fix', 'perf', 'style', 'docs', 'test', 'refactor', 'build', 'ci', 'chore', 'revert', 'wip', 'workflow', 'types', 'release', ], ], }, };