Skip to content
New issue

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

Rule proposal: do not use 'watch' #2415

Open
illegalnumbers opened this issue Mar 4, 2024 · 0 comments
Open

Rule proposal: do not use 'watch' #2415

illegalnumbers opened this issue Mar 4, 2024 · 0 comments

Comments

@illegalnumbers
Copy link

Please describe what the rule should do:
Prevent using the watch function without a override. This can cause very subtle race conditions throughout your application.

What category should the rule belong to?

[ ] Enforces code style (layout)
[x] Warns about a potential error (problem)
[ ] Suggests an alternate way of doing something (suggestion)
[ ] Other (please specify:)

Provide 2-3 code examples that this rule should warn about:

<!-- ✗ BAD -->
<script>
watch(refThing, (newRefThing) => {
console.log(newRefThing)
})
</script>
<!-- ✓ GOOD -->
<script>
// eslint-disable-next-line @vue/do-not-use-watch
watch(refThing, (newRefThing) => {
console.log(newRefThing)
})
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant