mirror of
https://gitee.com/bootx/dax-pay-ui.git
synced 2025-09-02 02:24:29 +00:00
12 lines
445 B
JavaScript
12 lines
445 B
JavaScript
module.exports = {
|
|
tabWidth: 2, //指定每个缩进级别的空格数
|
|
printWidth: 140, //超过多少换行
|
|
semi: false, //行位是否使用分号
|
|
vueIndentScriptAndStyle: true, // vue文件的script标签和Style标签下的内容需要缩进
|
|
singleQuote: true, // 强制使用单引号
|
|
trailingComma: 'all', // 强制最后一行也要有斗号
|
|
proseWrap: 'never',
|
|
htmlWhitespaceSensitivity: 'strict',
|
|
endOfLine: 'auto',
|
|
}
|