| Server IP : 185.208.173.17 / Your IP : 87.236.161.98 Web Server : Microsoft-IIS/10.0 System : Windows NT SRV8576125506 10.0 build 26100 (Windows Server 2016) AMD64 User : IUSR ( 0) PHP Version : 7.4.13 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/parsmega.nuxt/node_modules/eslint-plugin-vue/lib/rules/ |
Upload File : |
/**
* @fileoverview Require a name property in Vue components
* @author LukeeeeBennett
*/
'use strict'
const utils = require('../utils')
const { getVueComponentDefinitionType } = require('../utils')
/**
* @param {Property | SpreadElement} node
* @returns {node is ObjectExpressionProperty}
*/
function isNameProperty(node) {
return (
node.type === 'Property' &&
utils.getStaticPropertyName(node) === 'name' &&
!node.computed
)
}
module.exports = {
meta: {
type: 'suggestion',
docs: {
description: 'require a name property in Vue components',
categories: undefined,
url: 'https://eslint.vuejs.org/rules/require-name-property.html'
},
fixable: null,
schema: []
},
/** @param {RuleContext} context */
create(context) {
if (utils.isScriptSetup(context)) {
return {}
}
return utils.executeOnVue(context, (component, type) => {
if (type === 'definition') {
const defType = getVueComponentDefinitionType(component)
if (defType === 'mixin') {
return
}
}
if (component.properties.some(isNameProperty)) return
context.report({
node: component,
message: 'Required name property is not set.'
})
})
}
}