Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork698
Open
Labels
Description
What rule do you want to change?
next-tick-style
Does this change cause the rule to produce more or fewer warnings?
No.
How will the change be implemented? (New option, new default behavior, etc.)?
If insideasync function, provide autofix, otherwise no fix.
Please provide some example code that this change will affect:
<script setup>constfoo= ()=> {nextTick(()=> {// ...})}</script>
What does the rule currently do for this code?
Fixes my code tonextTick().then(...)
What will the rule do after it's changed?
Enforceawait nextTick()
Additional context
I want the promise style use ofnextTick(), but I don't want it fix tonextTick().then, I wantawait nextTick().