-
-
Notifications
You must be signed in to change notification settings - Fork 681
/
Copy pathno-root-v-if.js
48 lines (45 loc) · 1.12 KB
/
no-root-v-if.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
45
46
47
48
/**
* @author Perry Song
* @copyright 2023 Perry Song. All rights reserved.
* See LICENSE file in root directory for full license.
*/
'use strict'
const utils = require('../utils')
module.exports = {
meta: {
type: 'suggestion',
docs: {
description: 'disallow `v-if` directives on root element',
categories: undefined,
url: 'https://eslint.vuejs.org/rules/no-root-v-if.html'
},
fixable: null,
schema: [],
messages: {
noRootVIf: '`v-if` should not be used on root element without `v-else`.'
}
},
/** @param {RuleContext} context */
create(context) {
return {
/** @param {Program} program */
Program(program) {
const element = program.templateBody
if (element == null) {
return
}
const rootElements = element.children.filter(utils.isVElement)
if (
rootElements.length === 1 &&
utils.hasDirective(rootElements[0], 'if')
) {
context.report({
node: element,
loc: element.loc,
messageId: 'noRootVIf'
})
}
}
}
}
}