Skip to content

Commit 7efc730

Browse files
committed
fix: remove unused variable
1 parent 9faaf74 commit 7efc730

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/eslint-plugin-svelte/src/rules/no-add-event-listener.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export default createRule('no-add-event-listener', {
2626
create(context) {
2727
return {
2828
CallExpression(node: TSESTree.CallExpression) {
29-
const { callee, arguments: args } = node;
29+
const { callee } = node;
3030
let target: string | null = null;
3131

3232
if (

0 commit comments

Comments
 (0)