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
| /**
| * @author Yosuke Ota
| * See LICENSE file in root directory for full license.
| */
| 'use strict'
| module.exports = {
| supported: '2.6.0',
| createTemplateBodyVisitor (context) {
| /**
| * Reports dynamic argument node
| * @param {VExpressionContainer} dinamicArgument node of dynamic argument
| * @returns {void}
| */
| function reportDynamicArgument (dinamicArgument) {
| context.report({
| node: dinamicArgument,
| messageId: 'forbiddenDynamicDirectiveArguments'
| })
| }
|
| return {
| 'VAttribute[directive=true] > VDirectiveKey > VExpressionContainer': reportDynamicArgument
| }
| }
| }
|
|