StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics https://doi.org/10.1109/TVCG.2020.3030352
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.
 
 
 
 
StackGenVis/frontend/node_modules/eslint-plugin-vue/lib/rules/require-name-property.js

37 lines
800 B

/**
* @fileoverview Require a name property in Vue components
* @author LukeeeeBennett
*/
'use strict'
const utils = require('../utils')
function isNameProperty (node) {
return node.type === 'Property' &&
node.key.name === 'name' &&
!node.computed
}
module.exports = {
meta: {
type: 'suggestion',
docs: {
description: 'require a name property in Vue components',
category: undefined,
url: 'https://eslint.vuejs.org/rules/require-name-property.html'
},
fixable: null,
schema: []
},
create (context) {
return utils.executeOnVue(context, component => {
if (component.properties.some(isNameProperty)) return
context.report({
node: component,
message: 'Required name property is not set.'
})
})
}
}