We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
I updated my lib to v10 and saw some breaking changes... I changed my old "vue/v-on-function-call"
'vue/v-on-function-call': [ 'error', 'never', { ignoreIncludesComment: false } ]
But I didn't find a similar behavior to "never", am I doing something wrong?
never behaviour:
<template> <!-- ✓ GOOD --> <button v-on:click="closeModal">Close</button> <button v-on:click="closeModal(arg)">Close</button> <!-- ✗ BAD --> <button v-on:click="closeModal()">Close</button> </template>
I have my component that now throw errors but before worked fine:
<div class="flex justify-between q-mb-xl"> <qas-btn label="Esqueci o e-mail" variant="tertiary" @click="redirectToAuthForgotten('email')" /> <qas-btn label="Esqueci a senha" variant="tertiary" @click="redirectToAuthForgotten('password')" /> </div>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I updated my lib to v10 and saw some breaking changes...
I changed my old "vue/v-on-function-call"
But I didn't find a similar behavior to "never", am I doing something wrong?
never behaviour:
I have my component that now throw errors but before worked fine:
The text was updated successfully, but these errors were encountered: