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.
26 lines
621 B
26 lines
621 B
3 years ago
|
/**
|
||
|
* @author Yosuke Ota
|
||
|
* See LICENSE file in root directory for full license.
|
||
|
*/
|
||
|
'use strict'
|
||
|
module.exports = {
|
||
|
supported: '>=3.1.0',
|
||
|
/** @param {RuleContext} context @returns {TemplateListener} */
|
||
|
createTemplateBodyVisitor(context) {
|
||
|
return {
|
||
|
/** @param {VAttribute} node */
|
||
|
"VAttribute[directive=false][key.name='is']"(node) {
|
||
|
if (!node.value) {
|
||
|
return
|
||
|
}
|
||
|
if (node.value.value.startsWith('vue:')) {
|
||
|
context.report({
|
||
|
node: node.value,
|
||
|
messageId: 'forbiddenIsAttributeWithVuePrefix'
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|