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.
59 lines
1.8 KiB
59 lines
1.8 KiB
/** |
|
* @author Przemyslaw Falowski (@przemkow) |
|
* @fileoverview This rule checks whether v-model used on the component do not have custom modifiers |
|
*/ |
|
'use strict' |
|
|
|
// ------------------------------------------------------------------------------ |
|
// Requirements |
|
// ------------------------------------------------------------------------------ |
|
|
|
const utils = require('../utils') |
|
|
|
// ------------------------------------------------------------------------------ |
|
// Helpers |
|
// ------------------------------------------------------------------------------ |
|
|
|
const VALID_MODIFIERS = new Set(['lazy', 'number', 'trim']) |
|
|
|
// ------------------------------------------------------------------------------ |
|
// Rule Definition |
|
// ------------------------------------------------------------------------------ |
|
|
|
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 } |
|
}) |
|
} |
|
} |
|
} |
|
} |
|
}) |
|
} |
|
}
|
|
|