-
Notifications
You must be signed in to change notification settings - Fork 237
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Keyboard shortcuts (WEBAPP-4209) #1051
Conversation
@@ -24,7 +24,7 @@ const fs = require('fs-extra'); | |||
const minimist = require('minimist'); | |||
const path = require('path'); | |||
const raygun = require('raygun'); | |||
const {app, BrowserWindow, ipcMain, Menu, shell} = require('electron'); | |||
const { app, BrowserWindow, globalShortcut, ipcMain, Menu, shell } = require('electron'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
At some point we decided to remove the spaces within {
and }
.
webviewTag: true, | ||
}, | ||
webviewTag: true | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We also decided to keep trailing commas ;)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ffflorian Absolutely right. But it is not in this projects eslint config. We have a discussion on how we are going to move forward with codestyle in general at wireapp/wire-webapp#1729 that you are more than welcome to share your opinions in. For now I will go ahead and merge it in order to prepare our release.
Dismissing after comment and f2f explanation.
Addresses #883 |
No description provided.