diff --git a/commitlint.config.js b/commitlint.config.js index ac977af1..54598876 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -7,6 +7,7 @@ module.exports = { 'header-max-length': [2, 'always', 108], 'subject-empty': [2, 'never'], 'type-empty': [2, 'never'], + 'subject-case': [0], 'type-enum': [ 2, 'always', diff --git a/prettier.config.js b/prettier.config.js index b5958abb..51f8d01b 100644 --- a/prettier.config.js +++ b/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',