vben
2021-10-26 ed40b333f39fea7e3acc67bfa2d88aad9fd0f363
chore: Allow git message to be uppercase
2个文件已修改
9 ■■■■ 已修改文件
commitlint.config.js 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
prettier.config.js 8 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
commitlint.config.js
@@ -7,6 +7,7 @@
    'header-max-length': [2, 'always', 108],
    'subject-empty': [2, 'never'],
    'type-empty': [2, 'never'],
    'subject-case': [0],
    'type-enum': [
      2,
      'always',
prettier.config.js
@@ -1,17 +1,9 @@
module.exports = {
  printWidth: 100,
  tabWidth: 2,
  useTabs: false,
  semi: true,
  vueIndentScriptAndStyle: true,
  singleQuote: true,
  quoteProps: 'as-needed',
  bracketSpacing: true,
  trailingComma: 'all',
  jsxSingleQuote: false,
  arrowParens: 'always',
  insertPragma: false,
  requirePragma: false,
  proseWrap: 'never',
  htmlWhitespaceSensitivity: 'strict',
  endOfLine: 'auto',