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.82 [skip ci]
This commit is contained in:
39
web/admin-spa/node_modules/eslint-plugin-vue/lib/rules/no-deprecated-inline-template.js
generated
vendored
39
web/admin-spa/node_modules/eslint-plugin-vue/lib/rules/no-deprecated-inline-template.js
generated
vendored
@@ -1,39 +0,0 @@
|
||||
/**
|
||||
* @author Yosuke Ota
|
||||
* See LICENSE file in root directory for full license.
|
||||
*/
|
||||
'use strict'
|
||||
|
||||
const utils = require('../utils')
|
||||
|
||||
module.exports = {
|
||||
meta: {
|
||||
type: 'problem',
|
||||
docs: {
|
||||
description:
|
||||
'disallow using deprecated `inline-template` attribute (in Vue.js 3.0.0+)',
|
||||
categories: ['vue3-essential'],
|
||||
url: 'https://eslint.vuejs.org/rules/no-deprecated-inline-template.html'
|
||||
},
|
||||
fixable: null,
|
||||
schema: [],
|
||||
messages: {
|
||||
unexpected: '`inline-template` are deprecated.'
|
||||
}
|
||||
},
|
||||
/** @param {RuleContext} context */
|
||||
create(context) {
|
||||
return utils.defineTemplateBodyVisitor(context, {
|
||||
/** @param {VIdentifier} node */
|
||||
"VAttribute[directive=false] > VIdentifier[rawName='inline-template']"(
|
||||
node
|
||||
) {
|
||||
context.report({
|
||||
node,
|
||||
loc: node.loc,
|
||||
messageId: 'unexpected'
|
||||
})
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user