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,