jeecgboot vue3 ui

This commit is contained in:
zhangdaiscott
2021-10-20 14:32:09 +08:00
parent acc9633d62
commit 5a8812318e
854 changed files with 87119 additions and 199 deletions

32
commitlint.config.js Normal file
View File

@@ -0,0 +1,32 @@
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'],
'type-enum': [
2,
'always',
[
'feat',
'fix',
'perf',
'style',
'docs',
'test',
'refactor',
'build',
'ci',
'chore',
'revert',
'wip',
'workflow',
'types',
'release',
],
],
},
};