mirror of
https://github.com/Eugeny/tabby.git
synced 2024-12-02 11:44:01 +03:00
lint fixes
This commit is contained in:
parent
f151928b6b
commit
3daf0b394e
@ -113,11 +113,11 @@ export class SerialSession extends BaseSession {
|
|||||||
await super.destroy()
|
await super.destroy()
|
||||||
}
|
}
|
||||||
|
|
||||||
resize (columns, rows) {
|
resize (_, _) {
|
||||||
console.log('resize')
|
console.log('resize')
|
||||||
}
|
}
|
||||||
|
|
||||||
kill (signal?: string) {
|
kill (_?: string) {
|
||||||
this.serial.close()
|
this.serial.close()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -48,7 +48,7 @@ export class SerialModalComponent {
|
|||||||
port: path,
|
port: path,
|
||||||
baudrate: baudrate,
|
baudrate: baudrate,
|
||||||
databits: 8,
|
databits: 8,
|
||||||
parity: "none",
|
parity: 'none',
|
||||||
rtscts: false,
|
rtscts: false,
|
||||||
stopbits: 1,
|
stopbits: 1,
|
||||||
xany: false,
|
xany: false,
|
||||||
|
@ -7,7 +7,7 @@ import { BaseTerminalTabComponent } from 'terminus-terminal'
|
|||||||
import { SSHService } from '../services/ssh.service'
|
import { SSHService } from '../services/ssh.service'
|
||||||
import { SSHConnection, SSHSession } from '../api'
|
import { SSHConnection, SSHSession } from '../api'
|
||||||
import { SSHPortForwardingModalComponent } from './sshPortForwardingModal.component'
|
import { SSHPortForwardingModalComponent } from './sshPortForwardingModal.component'
|
||||||
import { Subscription } from 'rxjs';
|
import { Subscription } from 'rxjs'
|
||||||
|
|
||||||
/** @hidden */
|
/** @hidden */
|
||||||
@Component({
|
@Component({
|
||||||
|
Loading…
Reference in New Issue
Block a user