bumped eslint

This commit is contained in:
Eugene
2023-08-25 23:40:36 +02:00
parent 4684b0d6f5
commit 1b0ce6d684
21 changed files with 536 additions and 327 deletions

View File

@@ -150,11 +150,13 @@ export class BaseTerminalTabComponent<P extends BaseTerminalProfile> extends Bas
},
},
})
private spinnerActive = false
private spinnerPaused = false
private toolbarRevealTimeout = new ResettableTimeout(() => {
this.revealToolbar = false
}, 1000)
private frontendWriteLock = Promise.resolve()
get input$ (): Observable<Buffer> {

View File

@@ -33,6 +33,7 @@ export class StreamProcessingSettingsComponent {
description: _('Send bytes by typing in hex values'),
},
]
outputModes = [
{
key: null,
@@ -45,6 +46,7 @@ export class StreamProcessingSettingsComponent {
description: _('Output is shown as a hexdump'),
},
]
newlineModes = [
{ key: null, name: _('Keep') },
{ key: 'strip', name: _('Strip') },

View File

@@ -106,6 +106,7 @@ export class MultifocusService {
return
}
const tabs = currentTab.getAllTabs().filter(t => t instanceof BaseTerminalTabComponent)
// eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion
this.start(pane, tabs as any)
}
}