mirror of
https://github.com/Eugeny/tabby.git
synced 2025-07-20 02:18:01 +00:00
bumped eslint
This commit is contained in:
@@ -78,7 +78,7 @@ export class ElectronDockingService extends DockingService {
|
||||
getScreens (): Screen[] {
|
||||
const primaryDisplayID = this.electron.screen.getPrimaryDisplay().id
|
||||
return this.electron.screen.getAllDisplays().sort((a, b) =>
|
||||
a.bounds.x === b.bounds.x ? a.bounds.y - b.bounds.y : a.bounds.x - b.bounds.x
|
||||
a.bounds.x === b.bounds.x ? a.bounds.y - b.bounds.y : a.bounds.x - b.bounds.x,
|
||||
).map((display, index) => {
|
||||
return {
|
||||
...display,
|
||||
|
@@ -135,7 +135,7 @@ export class ElectronUpdaterService extends UpdaterService {
|
||||
],
|
||||
defaultId: 0,
|
||||
cancelId: 1,
|
||||
}
|
||||
},
|
||||
)).response === 0) {
|
||||
await this.downloaded
|
||||
this.autoUpdater.quitAndInstall()
|
||||
|
@@ -178,7 +178,7 @@ export class PrivateKeyLocator extends AutoPrivateKeyLocator {
|
||||
if (/^id_[\w\d]+$/.test(file)) {
|
||||
const privateKeyContents = await fs.readFile(
|
||||
path.join(keysPath, file),
|
||||
{ encoding: null }
|
||||
{ encoding: null },
|
||||
)
|
||||
results.push([file, privateKeyContents])
|
||||
}
|
||||
|
Reference in New Issue
Block a user