We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0a4c40 commit 5ff441fCopy full SHA for 5ff441f
lib/utils/index.js
@@ -365,10 +365,9 @@ module.exports = {
365
* export default {} in .vue || .jsx
366
* @param {ASTNode} node Node to check
367
* @param {string} path File name with extension
368
- * @param {RuleContext} context The ESLint rule context object.
369
* @returns {boolean}
370
*/
371
- isVueComponentFile (node, path, context) {
+ isVueComponentFile (node, path) {
372
const isVueFile = path.endsWith('.vue') || path.endsWith('.jsx')
373
return isVueFile &&
374
node.type === 'ExportDefaultDeclaration' &&
0 commit comments