Skip to content

Commit 5ff441f

Browse files
committed
Remove bad change
1 parent d0a4c40 commit 5ff441f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/utils/index.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -365,10 +365,9 @@ module.exports = {
365365
* export default {} in .vue || .jsx
366366
* @param {ASTNode} node Node to check
367367
* @param {string} path File name with extension
368-
* @param {RuleContext} context The ESLint rule context object.
369368
* @returns {boolean}
370369
*/
371-
isVueComponentFile (node, path, context) {
370+
isVueComponentFile (node, path) {
372371
const isVueFile = path.endsWith('.vue') || path.endsWith('.jsx')
373372
return isVueFile &&
374373
node.type === 'ExportDefaultDeclaration' &&

0 commit comments

Comments
 (0)