mirror of
https://github.com/Wei-Shaw/claude-relay-service.git
synced 2026-01-27 01:47:46 +00:00
chore: update frontend build for v1.1.83 [skip ci]
This commit is contained in:
27
web/admin-spa/node_modules/eslint-plugin-vue/lib/rules/syntaxes/dynamic-directive-arguments.js
generated
vendored
Normal file
27
web/admin-spa/node_modules/eslint-plugin-vue/lib/rules/syntaxes/dynamic-directive-arguments.js
generated
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
/**
|
||||
* @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
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user