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()
|
||||
}
|
||||
|
||||
resize (columns, rows) {
|
||||
resize (_, _) {
|
||||
console.log('resize')
|
||||
}
|
||||
|
||||
kill (signal?: string) {
|
||||
kill (_?: string) {
|
||||
this.serial.close()
|
||||
}
|
||||
|
||||
|
@ -48,7 +48,7 @@ export class SerialModalComponent {
|
||||
port: path,
|
||||
baudrate: baudrate,
|
||||
databits: 8,
|
||||
parity: "none",
|
||||
parity: 'none',
|
||||
rtscts: false,
|
||||
stopbits: 1,
|
||||
xany: false,
|
||||
|
@ -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({
|
||||
|
Loading…
Reference in New Issue
Block a user