forked from vuejs/eslint-plugin-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenforce-style-attribute.js
102 lines (91 loc) · 2.65 KB
/
enforce-style-attribute.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/**
* @author Mussin Benarbia
* See LICENSE file in root directory for full license.
*/
'use strict'
const { isVElement } = require('../utils')
/**
* check whether a tag has the `scoped` attribute
* @param {VElement} componentBlock
*/
function isScoped(componentBlock) {
return componentBlock.startTag.attributes.some(
(attribute) => !attribute.directive && attribute.key.name === 'scoped'
)
}
/**
* check whether a tag has the `module` attribute
* @param {VElement} componentBlock
*/
function isModule(componentBlock) {
return componentBlock.startTag.attributes.some(
(attribute) => !attribute.directive && attribute.key.name === 'module'
)
}
module.exports = {
meta: {
type: 'suggestion',
docs: {
description:
'enforce either the `scoped` or `module` attribute in SFC top level style tags',
categories: undefined,
url: 'https://eslint.vuejs.org/rules/enforce-style-attribute.html'
},
fixable: 'code',
schema: [{ enum: ['scoped', 'module', 'either'] }],
messages: {
needsScoped: 'The <style> tag should have the scoped attribute.',
needsModule: 'The <style> tag should have the module attribute.',
needsEither:
'The <style> tag should have either the scoped or module attribute.'
}
},
/** @param {RuleContext} context */
create(context) {
if (!context.parserServices.getDocumentFragment) {
return {}
}
const documentFragment = context.parserServices.getDocumentFragment()
if (!documentFragment) {
return {}
}
const topLevelElements = documentFragment.children.filter(isVElement)
const topLevelStyleTags = topLevelElements.filter(
(element) => element.rawName === 'style'
)
if (topLevelStyleTags.length === 0) {
return {}
}
const mode = context.options[0] || 'either'
const needsScoped = mode === 'scoped'
const needsModule = mode === 'module'
const needsEither = mode === 'either'
return {
Program() {
for (const styleTag of topLevelStyleTags) {
if (needsScoped && !isScoped(styleTag)) {
context.report({
node: styleTag,
messageId: 'needsScoped'
})
return
}
if (needsModule && !isModule(styleTag)) {
context.report({
node: styleTag,
messageId: 'needsModule'
})
return
}
if (needsEither && !isScoped(styleTag) && !isModule(styleTag)) {
context.report({
node: styleTag,
messageId: 'needsEither'
})
return
}
}
}
}
}
}