avoid using eslint comment exceptions
This commit is contained in:
parent
1a18151eff
commit
b5afad9da7
5 changed files with 10 additions and 13 deletions
|
@ -128,14 +128,14 @@ let wrapWebContents = function (webContents) {
|
|||
return ipcMain.emit.apply(ipcMain, [channel, event].concat(args))
|
||||
})
|
||||
webContents.on('ipc-message-sync', function (event, [channel, ...args]) {
|
||||
/* eslint-disable */
|
||||
// standard complains: Getter is not present
|
||||
Object.defineProperty(event, 'returnValue', {
|
||||
set: function (value) {
|
||||
return event.sendReply(JSON.stringify(value))
|
||||
},
|
||||
get: function () {
|
||||
return undefined
|
||||
}
|
||||
})
|
||||
/* eslint-enable */
|
||||
return ipcMain.emit.apply(ipcMain, [channel, event].concat(args))
|
||||
})
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue