mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-30 03:23:51 -05:00
lint: fix most eslint/no-empty-function violations (#6457)
* lint: fix most eslint/no-empty-function violations * Remove unnecessary closing brace in .oxlintrc.json
This commit is contained in:
committed by
GitHub
parent
3d7f0827ad
commit
146aeb1f5a
@@ -75,7 +75,10 @@ contextBridge.exposeInMainWorld('Actual', {
|
||||
|
||||
// No auto-updates in the desktop app
|
||||
isUpdateReadyForDownload: () => false,
|
||||
waitForUpdateReadyForDownload: () => new Promise<void>(() => {}),
|
||||
waitForUpdateReadyForDownload: () =>
|
||||
new Promise<void>(() => {
|
||||
// This is used in browser environment; do nothing in electron
|
||||
}),
|
||||
|
||||
getServerSocket: async () => {
|
||||
return null;
|
||||
|
||||
Reference in New Issue
Block a user