From 1607b02d4e93b945561c9a5717cd202573b89b23 Mon Sep 17 00:00:00 2001 From: Dylan700 Date: Thu, 30 Nov 2023 12:01:27 +1100 Subject: [PATCH] Fix Lint --- examples/with-electron-typescript/electron-src/index.ts | 2 +- examples/with-electron-typescript/next.config.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/with-electron-typescript/electron-src/index.ts b/examples/with-electron-typescript/electron-src/index.ts index 7ca3d1c7ab56d..13a20750a0b2b 100644 --- a/examples/with-electron-typescript/electron-src/index.ts +++ b/examples/with-electron-typescript/electron-src/index.ts @@ -39,4 +39,4 @@ app.on('window-all-closed', app.quit) ipcMain.on('message', (event: IpcMainEvent, message: any) => { console.log(message) setTimeout(() => event.sender.send('message', 'hi from electron'), 500) -}) \ No newline at end of file +}) diff --git a/examples/with-electron-typescript/next.config.js b/examples/with-electron-typescript/next.config.js index 73202c68e3071..fecf9218a39dc 100644 --- a/examples/with-electron-typescript/next.config.js +++ b/examples/with-electron-typescript/next.config.js @@ -2,7 +2,7 @@ * @type {import('next').NextConfig} */ const nextConfig = { - output: "export" + output: 'export', } -module.exports = nextConfig \ No newline at end of file +module.exports = nextConfig