prettier配置文件
module.exports = {
"tabWidth": 4, // tab宽度
"proseWrap": "always", // 超过宽度自动换行
"printWidth": 240, // 多少字符换行
"parsers": {
".js": "javascript",
".jsx": "flow",
".scss": "scss",
".ts": "typescript",
".less": "css",
".vue": "vue",
".nvue": "vue",
".ux": "vue",
".yml": "yaml",
}
}
需格式化的代码
<template>
<view>
<view>123</view>
<view>123</view>
</view>
</template>