You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
521 B
20 lines
521 B
module.exports = {
|
|
printWidth: 160,
|
|
semi: false,
|
|
vueIndentScriptAndStyle: true,
|
|
singleQuote: true,
|
|
endOfLine: 'lf',
|
|
tabWidth: 2,
|
|
useTabs: false,
|
|
quoteProps: 'preserve',
|
|
bracketSpacing: true,
|
|
trailingComma: 'none',
|
|
// 解决标签结尾 > 格式化到下一行的问题,htmlWhitespaceSensitivity不能为 strict
|
|
jsxBracketSameLine: false,
|
|
jsxSingleQuote: false,
|
|
arrowParens: 'always',
|
|
insertPragma: false,
|
|
requirePragma: false,
|
|
proseWrap: 'never',
|
|
htmlWhitespaceSensitivity: 'ignore'
|
|
}
|