You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.3 KiB
51 lines
1.3 KiB
/**
|
|
* @author Sosuke Suzuki
|
|
*/
|
|
'use strict'
|
|
|
|
const utils = require('../utils')
|
|
|
|
module.exports = {
|
|
meta: {
|
|
type: 'problem',
|
|
docs: {
|
|
description: 'disallow using arrow functions to define watcher',
|
|
categories: ['vue3-essential', 'vue2-essential'],
|
|
url: 'https://eslint.vuejs.org/rules/no-arrow-functions-in-watch.html'
|
|
},
|
|
fixable: null,
|
|
schema: [],
|
|
messages: {
|
|
noArrowFunctionsInWatch:
|
|
'You should not use an arrow function to define a watcher.'
|
|
}
|
|
},
|
|
/** @param {RuleContext} context */
|
|
create(context) {
|
|
return utils.executeOnVue(context, (obj) => {
|
|
const watchNode = utils.findProperty(obj, 'watch')
|
|
if (watchNode == null) {
|
|
return
|
|
}
|
|
const watchValue = watchNode.value
|
|
if (watchValue.type !== 'ObjectExpression') {
|
|
return
|
|
}
|
|
for (const property of watchValue.properties) {
|
|
if (property.type !== 'Property') {
|
|
continue
|
|
}
|
|
|
|
for (const handler of utils.iterateWatchHandlerValues(property)) {
|
|
if (handler.type === 'ArrowFunctionExpression') {
|
|
context.report({
|
|
node: handler,
|
|
messageId: 'noArrowFunctionsInWatch'
|
|
})
|
|
}
|
|
}
|
|
}
|
|
})
|
|
}
|
|
}
|