forked from vuejs/eslint-plugin-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathname-property-required.js
44 lines (37 loc) · 1002 Bytes
/
name-property-required.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/**
* @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'
}
function hasTruthyLiteralValue (node) {
return node.value.type === 'Literal' && node.value.value
}
module.exports = {
meta: {
type: 'suggestion',
docs: {
description: 'require a name property in Vue components',
category: undefined,
url: 'https://eslint.vuejs.org/rules/name-property-required.html'
},
fixable: null,
schema: []
},
create (context) {
return utils.executeOnVue(context, component => {
const isValid = component.properties.some(property => {
return isNameProperty(property) &&
hasTruthyLiteralValue(property)
})
if (isValid) return
context.report({
node: component,
message: 'Required name property is undefined.'
})
})
}
}