Skip to content

Commit 4dfbe33

Browse files
committed
Remove unnecessary JSDoc
1 parent f59de96 commit 4dfbe33

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

lib/rules/no-undef-properties.js

-1
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,6 @@ module.exports = {
268268

269269
const scriptVisitor = utils.compositingVisitors(
270270
{
271-
/** @param {Program} node */
272271
Program() {
273272
if (!utils.isScriptSetup(context)) {
274273
return

lib/rules/no-unregistered-components.js

-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,6 @@ module.exports = {
124124
if (utils.isHtmlWellKnownElementName(value)) return
125125
usedComponentNodes.push({ node, name: value })
126126
},
127-
/** @param {VElement} node */
128127
"VElement[name='template'][parent.type='VDocumentFragment']:exit"() {
129128
// All registered components, transformed to kebab-case
130129
const registeredComponentNames = registeredComponents.map(

0 commit comments

Comments
 (0)