init 初始化脚手架

This commit is contained in:
bootx
2024-02-10 21:52:30 +08:00
commit 17b06dc9c0
131 changed files with 13067 additions and 0 deletions

20
prettier.config.js Normal file
View File

@@ -0,0 +1,20 @@
module.exports = {
printWidth: 100,
tabWidth: 2,
useTabs: false,
semi: false, //行位是否使用分号
vueIndentScriptAndStyle: true,
singleQuote: true,
quoteProps: 'as-needed',
bracketSpacing: true,
trailingComma: 'all',
jsxBracketSameLine: false,
jsxSingleQuote: false,
arrowParens: 'always',
insertPragma: false,
requirePragma: false,
proseWrap: 'never',
htmlWhitespaceSensitivity: 'strict',
endOfLine: 'auto',
rangeStart: 0,
};