Skip to content

Commit 56a0306

Browse files
committed
Remove bad change
1 parent 78a111a commit 56a0306

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
@@ -357,10 +357,9 @@ module.exports = {
357357
* export default {} in .vue || .jsx
358358
* @param {ASTNode} node Node to check
359359
* @param {string} path File name with extension
360-
* @param {RuleContext} context The ESLint rule context object.
361360
* @returns {boolean}
362361
*/
363-
isVueComponentFile (node, path, context) {
362+
isVueComponentFile (node, path) {
364363
const isVueFile = path.endsWith('.vue') || path.endsWith('.jsx')
365364
return isVueFile &&
366365
node.type === 'ExportDefaultDeclaration' &&

0 commit comments

Comments
 (0)