We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To reproduce:
<view wx:if="{{showGoods}}" wx:for="{{goodsList}}" >{{item.name}}</view> <block wx:else> <view wx:for="{{userList}}" >{{item.username}}</view> </block>
workaround for this case:
<block wx:if="{{showGoods}}"> <view wx:for="{{goodsList}}" >{{item.name}}</view> </block> <block wx:else> <view wx:for="{{userList}}" >{{item.username}}</view> </block>
Current behavior:
No eslint problem hint, but get wechat miniprogram compile error
Bad attr `wx:else` with message: `wx:if not found, then something must be wrong`
Expected behavior:
lint this error
Environment information:
eslint
nodejs
eslint-plugin-wxml
The text was updated successfully, but these errors were encountered:
iChenLei
No branches or pull requests
To reproduce:
workaround for this case:
Current behavior:
No eslint problem hint, but get wechat miniprogram compile error
Expected behavior:
lint this error
Environment information:
eslint
version: v7nodejs
version: v14eslint-plugin-wxml
version: 0.5.0The text was updated successfully, but these errors were encountered: