prettier-plugin-wxml

3.0.0 • Public • Published

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"
/>

联系作者

github

Readme

Keywords

none

Package Sidebar

Install

npm i prettier-plugin-wxml

Weekly Downloads

9

Version

3.0.0

License

ISC

Unpacked Size

80.6 kB

Total Files

15

Last publish

Collaborators

  • dhlolo
  • carryzhang
  • ichenlei
  • vincent-sea