prettier-plugin-wxml
v3.0.0
Published
prettier 插件,提供微信小程序 wxml 文件的格式化能力
Downloads
15
Keywords
Readme
prettier-plugin-wxml
prettier 插件,提供微信小程序 wxml 文件的格式化能力
环境搭建
npm install --save-dev prettier prettier-plugin-wxml
使用示例
./node_modules/.bin/prettier --write '*/.wxml'
效果展示
input
<view
bindtap="onClick"
catchtap="onCatchClick"
class="cart-container"
wx:if="true"
style="height: 100vh"
/>
output
<view
wx:if="true"
class="cart-container"
style="height: 100vh"
bindtap="onClick"
catchtap="onCatchClick"
/>