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.
14 lines
465 B
14 lines
465 B
module.exports = {
|
|
// 一行的字符数,如果超过会进行换行,默认为80
|
|
printWidth: 100,
|
|
// 行位是否使用分号,默认为true
|
|
semi: false,
|
|
vueIndentScriptAndStyle: true,
|
|
// 字符串是否使用单引号,默认为false,使用双引号
|
|
singleQuote: true,
|
|
// 是否使用尾逗号,有三个可选值"<none|es5|all>"
|
|
trailingComma: 'all',
|
|
proseWrap: 'never',
|
|
htmlWhitespaceSensitivity: 'strict',
|
|
endOfLine: 'auto',
|
|
};
|
|
|