1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-12-02 02:23:12 +03:00

lint fixes

This commit is contained in:
Nikolaos Stefanou 2020-02-25 19:54:36 +00:00 committed by Nick Stefanou
parent f151928b6b
commit 3daf0b394e
3 changed files with 4 additions and 4 deletions

View File

@ -113,11 +113,11 @@ export class SerialSession extends BaseSession {
await super.destroy()
}
resize (columns, rows) {
resize (_, _) {
console.log('resize')
}
kill (signal?: string) {
kill (_?: string) {
this.serial.close()
}

View File

@ -48,7 +48,7 @@ export class SerialModalComponent {
port: path,
baudrate: baudrate,
databits: 8,
parity: "none",
parity: 'none',
rtscts: false,
stopbits: 1,
xany: false,

View File

@ -7,7 +7,7 @@ import { BaseTerminalTabComponent } from 'terminus-terminal'
import { SSHService } from '../services/ssh.service'
import { SSHConnection, SSHSession } from '../api'
import { SSHPortForwardingModalComponent } from './sshPortForwardingModal.component'
import { Subscription } from 'rxjs';
import { Subscription } from 'rxjs'
/** @hidden */
@Component({