We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78a111a commit 56a0306Copy full SHA for 56a0306
lib/utils/index.js
@@ -357,10 +357,9 @@ module.exports = {
357
* export default {} in .vue || .jsx
358
* @param {ASTNode} node Node to check
359
* @param {string} path File name with extension
360
- * @param {RuleContext} context The ESLint rule context object.
361
* @returns {boolean}
362
*/
363
- isVueComponentFile (node, path, context) {
+ isVueComponentFile (node, path) {
364
const isVueFile = path.endsWith('.vue') || path.endsWith('.jsx')
365
return isVueFile &&
366
node.type === 'ExportDefaultDeclaration' &&
0 commit comments