bumped eslint

This commit is contained in:
Eugene Pankov
2022-12-05 12:16:27 +01:00
parent b0600b10cc
commit 98476df882
40 changed files with 750 additions and 381 deletions

View File

@@ -98,7 +98,7 @@ export class SSHTabComponent extends BaseTerminalTabComponent {
const jumpSession = await this.setupOneSession(
this.injector,
this.profilesService.getConfigProxyForProfile(jumpConnection)
this.profilesService.getConfigProxyForProfile(jumpConnection),
)
jumpSession.ref()
@@ -118,7 +118,7 @@ export class SSHTabComponent extends BaseTerminalTabComponent {
return
}
resolve(stream)
}
},
))
}
}
@@ -252,7 +252,7 @@ export class SSHTabComponent extends BaseTerminalTabComponent {
],
defaultId: 0,
cancelId: 1,
}
},
)).response === 0
}

View File

@@ -75,4 +75,4 @@ export default class SSHModule { }
export * from './api'
export { SFTPFile, SFTPSession } from './session/sftp'
export { SFTPPanelComponent, SFTPContextMenuItemProvider }
export { SFTPPanelComponent }

View File

@@ -554,7 +554,7 @@ export class SSHSession {
socket.on('close', () => {
stream.close()
})
}
},
)
}).then(() => {
this.emitServiceMessage(colors.bgGreen.black(' -> ') + ` Forwarded ${fw}`)