2021-10-20 06:32:09 +00:00
|
|
|
module.exports = {
|
2022-09-22 06:05:12 +00:00
|
|
|
printWidth: 150,
|
2021-10-20 06:32:09 +00:00
|
|
|
tabWidth: 2,
|
|
|
|
useTabs: false,
|
2022-04-27 11:19:39 +00:00
|
|
|
semi: true, //语句末尾使用分号
|
2021-10-20 06:32:09 +00:00
|
|
|
vueIndentScriptAndStyle: true,
|
2022-04-27 11:19:39 +00:00
|
|
|
singleQuote: true, // 使用单引号
|
2021-10-20 06:32:09 +00:00
|
|
|
quoteProps: 'as-needed',
|
|
|
|
bracketSpacing: true,
|
|
|
|
trailingComma: 'es5',
|
2022-06-21 09:53:49 +00:00
|
|
|
jsxBracketSameLine: false,
|
2021-10-20 06:32:09 +00:00
|
|
|
jsxSingleQuote: false,
|
|
|
|
arrowParens: 'always',
|
|
|
|
insertPragma: false,
|
|
|
|
requirePragma: false,
|
|
|
|
proseWrap: 'never',
|
|
|
|
htmlWhitespaceSensitivity: 'strict',
|
|
|
|
endOfLine: 'auto',
|
|
|
|
rangeStart: 0,
|
|
|
|
};
|