项目初始化

This commit is contained in:
chenxiaoxi
2021-04-19 18:00:27 +08:00
commit b2620a08a1
164 changed files with 14408 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
/**
* @description 代码规范
*/
module.exports = {
printWidth: 80,
tabWidth: 2,
useTabs: false,
semi: false,
singleQuote: true,
quoteProps: 'as-needed',
jsxSingleQuote: false,
trailingComma: 'es5',
bracketSpacing: true,
jsxBracketSameLine: false,
arrowParens: 'always',
htmlWhitespaceSensitivity: 'ignore',
vueIndentScriptAndStyle: true,
endOfLine: 'lf',
}