11 lines
375 B
JavaScript
11 lines
375 B
JavaScript
module.exports = {
|
||
printWidth: 100,
|
||
tabWidth: 2,
|
||
useTabs: true, // 是否使用tab进行缩进,默认为false
|
||
singleQuote: true, // 是否使用单引号代替双引号,默认为false
|
||
semi: false, // 行尾是否使用分号,默认为true
|
||
arrowParens: 'always',
|
||
endOfLine: 'auto',
|
||
vueIndentScriptAndStyle: true,
|
||
htmlWhitespaceSensitivity: 'strict',
|
||
}; |