From 1a4119f2f6cf13e30db0baa00bbb29355e1dae93 Mon Sep 17 00:00:00 2001 From: MCMXC <16797721+mcmxcdev@users.noreply.github.com> Date: Sun, 3 Dec 2023 19:32:14 -0700 Subject: chore: project maintenance (#1466) - temporarily disable newly introduced `jsx-a11y/control-has-associated-label` rule - add `--quiet` flag to lint command to see issues with error level only - reuse `lint` command for `lint:fix` command - use `--cache` flag for `prettier` and `eslint` commands - upgrade all non-major dependencies to latest except for `esbuild` - run `pnpm dedupe` to simplify lockfile - autofix various `.ts` and `.tsx` files with `pnpm prepare-code` command - disable newly discovered lint issue in `SearchInput` --- src/stores/AppStore.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/stores/AppStore.ts') diff --git a/src/stores/AppStore.ts b/src/stores/AppStore.ts index ab98ca89c..9af0a9a4f 100644 --- a/src/stores/AppStore.ts +++ b/src/stores/AppStore.ts @@ -49,8 +49,8 @@ const mainWindow = getCurrentWindow(); const executablePath = isMac ? remoteProcess.execPath : isWinPortable - ? process.env.PORTABLE_EXECUTABLE_FILE - : process.execPath; + ? process.env.PORTABLE_EXECUTABLE_FILE + : process.execPath; const autoLauncher = new AutoLaunch({ name: 'Ferdium', path: executablePath, -- cgit v1.2.3-54-g00ecf