We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c79d65a commit 8a1e300Copy full SHA for 8a1e300
lib/rules/no-ref-as-operand.js
@@ -125,11 +125,7 @@ module.exports = {
125
) {
126
// verify setup(props,{emit}) {emit()}
127
node.arguments
128
- .filter(
129
- (node) =>
130
- node.type === 'Identifier' &&
131
- isRefInit(refReferences.get(node))
132
- )
+ .filter((node) => node.type === 'Identifier')
133
.forEach((node) => {
134
reportIfRefWrapped(node)
135
})
@@ -143,11 +139,7 @@ module.exports = {
143
139
144
140
// verify setup(props,context) {context.emit()}
145
141
emit.member.parent.arguments
146
147
148
149
150
142
151
152
153
0 commit comments