mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-17 23:24:51 +00:00
cleanup: Don't linebreak before closing parentheses
Otherwise recent versions of eslint want "dangling" commas, which is at least ugly considering that most functions don't allow adding arguments at leasure. https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1177
This commit is contained in:
parent
2e80995f19
commit
153b7d525d
19 changed files with 49 additions and 87 deletions
|
|
@ -125,8 +125,7 @@ var ContentTypeDiscoverer = class {
|
|||
_emitCallback(mount, contentTypes = []) {
|
||||
// we're not interested in win32 software content types here
|
||||
contentTypes = contentTypes.filter(
|
||||
type => type != 'x-content/win32-software'
|
||||
);
|
||||
type => type !== 'x-content/win32-software');
|
||||
|
||||
let apps = [];
|
||||
contentTypes.forEach(type => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue