mirror of
https://gitee.com/chu1204505056/vue-admin-beautiful.git
synced 2025-04-05 05:42:45 +08:00
17 lines
354 B
JavaScript
17 lines
354 B
JavaScript
module.exports = {
|
|
printWidth: 80,
|
|
tabWidth: 2,
|
|
useTabs: false,
|
|
semi: true,
|
|
singleQuote: false,
|
|
quoteProps: "as-needed",
|
|
jsxSingleQuote: false,
|
|
trailingComma: "es5",
|
|
bracketSpacing: true,
|
|
jsxBracketSameLine: false,
|
|
arrowParens: "always",
|
|
htmlWhitespaceSensitivity: "ignore",
|
|
vueIndentScriptAndStyle: true,
|
|
endOfLine: "lf",
|
|
};
|