mirror of
https://github.com/Wei-Shaw/claude-relay-service.git
synced 2026-01-24 07:47:13 +00:00
chore: update frontend build for v1.1.82 [skip ci]
This commit is contained in:
84
web/admin-spa/node_modules/eslint-plugin-vue/lib/rules/no-shared-component-data.js
generated
vendored
84
web/admin-spa/node_modules/eslint-plugin-vue/lib/rules/no-shared-component-data.js
generated
vendored
@@ -1,84 +0,0 @@
|
||||
/**
|
||||
* @fileoverview Enforces component's data property to be a function.
|
||||
* @author Armano
|
||||
*/
|
||||
'use strict'
|
||||
|
||||
const utils = require('../utils')
|
||||
|
||||
/** @param {Token} token */
|
||||
function isOpenParen(token) {
|
||||
return token.type === 'Punctuator' && token.value === '('
|
||||
}
|
||||
|
||||
/** @param {Token} token */
|
||||
function isCloseParen(token) {
|
||||
return token.type === 'Punctuator' && token.value === ')'
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {Expression} node
|
||||
* @param {SourceCode} sourceCode
|
||||
*/
|
||||
function getFirstAndLastTokens(node, sourceCode) {
|
||||
let first = sourceCode.getFirstToken(node)
|
||||
let last = sourceCode.getLastToken(node)
|
||||
|
||||
// If the value enclosed by parentheses, update the 'first' and 'last' by the parentheses.
|
||||
while (true) {
|
||||
const prev = sourceCode.getTokenBefore(first)
|
||||
const next = sourceCode.getTokenAfter(last)
|
||||
if (isOpenParen(prev) && isCloseParen(next)) {
|
||||
first = prev
|
||||
last = next
|
||||
} else {
|
||||
return { first, last }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
meta: {
|
||||
type: 'problem',
|
||||
docs: {
|
||||
description: "enforce component's data property to be a function",
|
||||
categories: ['vue3-essential', 'vue2-essential'],
|
||||
url: 'https://eslint.vuejs.org/rules/no-shared-component-data.html'
|
||||
},
|
||||
fixable: 'code',
|
||||
schema: [],
|
||||
messages: {
|
||||
dataPropertyMustBeFunction:
|
||||
'`data` property in component must be a function.'
|
||||
}
|
||||
},
|
||||
/** @param {RuleContext} context */
|
||||
create(context) {
|
||||
const sourceCode = context.getSourceCode()
|
||||
|
||||
return utils.executeOnVueComponent(context, (obj) => {
|
||||
const invalidData = utils.findProperty(
|
||||
obj,
|
||||
'data',
|
||||
(p) =>
|
||||
p.value.type !== 'FunctionExpression' &&
|
||||
p.value.type !== 'ArrowFunctionExpression' &&
|
||||
p.value.type !== 'Identifier'
|
||||
)
|
||||
if (invalidData) {
|
||||
context.report({
|
||||
node: invalidData,
|
||||
messageId: 'dataPropertyMustBeFunction',
|
||||
fix(fixer) {
|
||||
const tokens = getFirstAndLastTokens(invalidData.value, sourceCode)
|
||||
|
||||
return [
|
||||
fixer.insertTextBefore(tokens.first, 'function() {\nreturn '),
|
||||
fixer.insertTextAfter(tokens.last, ';\n}')
|
||||
]
|
||||
}
|
||||
})
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user