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
Tell us about your environment
Please show your full configuration:
module.exports = { env: { node: true }, extends: [ 'plugin:vue/essential', '@vue/standard' ], parser: 'vue-eslint-parser', parserOptions: { parser: 'babel-eslint' }, root: true, rules: { /* omitted other rules */ 'vue/no-unused-properties': [ 'warn', { 'groups': ['props', 'data', 'computed', 'methods', 'setup'] }] } }
What did you do?
Calls to methods within watch handlers do not get picked up as being used by vue/no-unused-properties. GetMoreData will be highlighted as unused
watch: { someData: { handler: 'GetMoreData', immediate: true } }, ...... methods: { GetMoreData () { /* business logic here */ } }
What did you expect to happen? GetMoreData is not flagged as unused
What actually happened?
'GetMoreData' of method found, but never used. eslint(vue/no-unused-properties)
The text was updated successfully, but these errors were encountered:
Thank you for this issue!
It looks like a bug.
Sorry, something went wrong.
vue/no-unused-properties
Successfully merging a pull request may close this issue.
Tell us about your environment
Please show your full configuration:
What did you do?
Calls to methods within watch handlers do not get picked up as being used by vue/no-unused-properties. GetMoreData will be highlighted as unused
What did you expect to happen?
GetMoreData is not flagged as unused
What actually happened?
'GetMoreData' of method found, but never used. eslint(vue/no-unused-properties)
The text was updated successfully, but these errors were encountered: