File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,13 @@ export default tseslint.config(
33
33
"@typescript-eslint/no-explicit-any" : "off" ,
34
34
"@typescript-eslint/no-empty-object-type" : "off" ,
35
35
"@typescript-eslint/ban-ts-comment" : "off" ,
36
+ "@typescript-eslint/no-unused-vars" : [
37
+ "error" ,
38
+ {
39
+ caughtErrors : "none" ,
40
+ ignoreRestSiblings : true ,
41
+ } ,
42
+ ] ,
36
43
} ,
37
44
} ,
38
45
) ;
Original file line number Diff line number Diff line change @@ -176,7 +176,6 @@ export default class SimpleSocketIOClient {
176
176
// Set transport.websocket property as a public alias of the websocket
177
177
this . socket . transport . websocket = this . webSocket ;
178
178
this . addInitialEventListeners ( this . webSocket ) ;
179
- // eslint-disable-next-line @typescript-eslint/no-unused-vars
180
179
} catch ( error ) {
181
180
this . reconnecting = false ;
182
181
}
You can’t perform that action at this time.
0 commit comments