-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0bc956b
commit fea3248
Showing
21 changed files
with
1,279 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
npx lint-staged --concurrent false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
const path = require('path') | ||
|
||
const buildEslintCommand = (filenames) => | ||
`eslint --fix ${filenames.map((f) => path.relative(process.cwd(), f)).join(' ')}` | ||
|
||
const buildPrettierCommand = (filenames) => | ||
`prettier --write ${filenames.map((f) => path.relative(process.cwd(), f)).join(' ')}` | ||
|
||
module.exports = { | ||
'*.{js,jsx,ts,tsx}': [buildEslintCommand], | ||
'*.{js,ts,tsx,css,md,mdx,json}': [buildPrettierCommand], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"printWidth": 120, | ||
"semi": false, | ||
"singleQuote": true, | ||
"tabWidth": 2, | ||
"trailingComma": "all", | ||
"useTabs": false, | ||
"importOrder": ["^@core/(.*)$", "^@server/(.*)$", "^@ui/(.*)$", "^[./]"], | ||
"importOrderSeparation": true, | ||
"importOrderSortSpecifiers": true, | ||
"plugins": ["@trivago/prettier-plugin-sort-imports", "prettier-plugin-tailwindcss"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"editor.formatOnSave": true, | ||
"editor.wordWrap": "wordWrapColumn", | ||
"editor.wordWrapColumn": 120, | ||
"files.associations": { | ||
"*.css": "tailwindcss" | ||
}, | ||
"typescript.tsdk": "node_modules/typescript/lib" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,31 @@ | ||
export {}; // Make this a module | ||
export {} // Make this a module | ||
|
||
declare global { | ||
// This allows TypeScript to pick up the magic constants that's auto-generated by Forge's Vite | ||
// plugin that tells the Electron app where to look for the Vite-bundled app code (depending on | ||
// whether you're running in development or production). | ||
const MAIN_WINDOW_VITE_DEV_SERVER_URL: string; | ||
const MAIN_WINDOW_VITE_NAME: string; | ||
const MAIN_WINDOW_VITE_DEV_SERVER_URL: string | ||
const MAIN_WINDOW_VITE_NAME: string | ||
|
||
namespace NodeJS { | ||
interface Process { | ||
// Used for hot reload after preload scripts. | ||
viteDevServers: Record<string, import('vite').ViteDevServer>; | ||
viteDevServers: Record<string, import('vite').ViteDevServer> | ||
} | ||
} | ||
|
||
type VitePluginConfig = ConstructorParameters<typeof import('@electron-forge/plugin-vite').VitePlugin>[0]; | ||
type VitePluginConfig = ConstructorParameters<typeof import('@electron-forge/plugin-vite').VitePlugin>[0] | ||
|
||
interface VitePluginRuntimeKeys { | ||
VITE_DEV_SERVER_URL: `${string}_VITE_DEV_SERVER_URL`; | ||
VITE_NAME: `${string}_VITE_NAME`; | ||
VITE_DEV_SERVER_URL: `${string}_VITE_DEV_SERVER_URL` | ||
VITE_NAME: `${string}_VITE_NAME` | ||
} | ||
} | ||
|
||
declare module 'vite' { | ||
interface ConfigEnv<K extends keyof VitePluginConfig = keyof VitePluginConfig> { | ||
root: string; | ||
forgeConfig: VitePluginConfig; | ||
forgeConfigSelf: VitePluginConfig[K][number]; | ||
root: string | ||
forgeConfig: VitePluginConfig | ||
forgeConfigSelf: VitePluginConfig[K][number] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.