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