This commit is contained in:
zk
2023-11-24 13:53:11 +08:00
parent 2648d8f694
commit 7299e96d20
2 changed files with 77 additions and 47 deletions
+20
View File
@@ -0,0 +1,20 @@
module.exports = {
printWidth: 150,
tabWidth: 4,
useTabs: false,
semi: true, //语句末尾使用分号
vueIndentScriptAndStyle: true,
singleQuote: true, // 使用单引号
quoteProps: 'as-needed',
bracketSpacing: true,
trailingComma: 'es5',
jsxBracketSameLine: false,
jsxSingleQuote: false,
arrowParens: 'always',
insertPragma: false,
requirePragma: false,
proseWrap: 'never',
htmlWhitespaceSensitivity: 'strict',
endOfLine: 'auto',
rangeStart: 0,
};