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.
47 lines
1.3 KiB
47 lines
1.3 KiB
/**
|
|
* @author Przemyslaw Falowski (@przemkow)
|
|
* @fileoverview This rule checks whether v-model used on the component do not have custom modifiers
|
|
*/
|
|
'use strict'
|
|
|
|
const utils = require('../utils')
|
|
|
|
const VALID_MODIFIERS = new Set(['lazy', 'number', 'trim'])
|
|
|
|
module.exports = {
|
|
meta: {
|
|
type: 'problem',
|
|
docs: {
|
|
description: 'disallow custom modifiers on v-model used on the component',
|
|
categories: ['essential'],
|
|
url: 'https://eslint.vuejs.org/rules/no-custom-modifiers-on-v-model.html'
|
|
},
|
|
fixable: null,
|
|
schema: [],
|
|
messages: {
|
|
notSupportedModifier:
|
|
"'v-model' directives don't support the modifier '{{name}}'."
|
|
}
|
|
},
|
|
/** @param {RuleContext} context */
|
|
create(context) {
|
|
return utils.defineTemplateBodyVisitor(context, {
|
|
"VAttribute[directive=true][key.name.name='model']"(node) {
|
|
const element = node.parent.parent
|
|
|
|
if (utils.isCustomComponent(element)) {
|
|
for (const modifier of node.key.modifiers) {
|
|
if (!VALID_MODIFIERS.has(modifier.name)) {
|
|
context.report({
|
|
node,
|
|
loc: node.loc,
|
|
messageId: 'notSupportedModifier',
|
|
data: { name: modifier.name }
|
|
})
|
|
}
|
|
}
|
|
}
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|