This repository has been archived on 2020-11-02. You can view files and clone it, but cannot push or open issues or pull requests.
2020-11-01 22:46:04 +00:00

27 lines
703 B
JavaScript

/**
* @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
}
}
}