diff --git a/.prettierrc.json b/.prettierrc.json index cdd1fdc..ca688e7 100644 --- a/.prettierrc.json +++ b/.prettierrc.json @@ -1,5 +1,5 @@ { - "printWidth": 120, + "printWidth": 80, "semi": false, "singleQuote": true, "tabWidth": 2, @@ -8,5 +8,8 @@ "importOrder": ["^@core/(.*)$", "^@server/(.*)$", "^@ui/(.*)$", "^[./]"], "importOrderSeparation": true, "importOrderSortSpecifiers": true, - "plugins": ["@trivago/prettier-plugin-sort-imports", "prettier-plugin-tailwindcss"] + "plugins": [ + "@trivago/prettier-plugin-sort-imports", + "prettier-plugin-tailwindcss" + ] } diff --git a/.vscode/settings.json b/.vscode/settings.json index 85de7e1..ad0a9a6 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,7 +1,7 @@ { "editor.formatOnSave": true, "editor.wordWrap": "wordWrapColumn", - "editor.wordWrapColumn": 120, + "editor.wordWrapColumn": 80, "files.associations": { "*.css": "tailwindcss" }, diff --git a/forge.config.ts b/forge.config.ts index 3cfd260..8d3c63a 100644 --- a/forge.config.ts +++ b/forge.config.ts @@ -12,7 +12,12 @@ const config: ForgeConfig = { asar: true, }, rebuildConfig: {}, - makers: [new MakerSquirrel({}), new MakerZIP({}, ['darwin']), new MakerRpm({}), new MakerDeb({})], + makers: [ + new MakerSquirrel({}), + new MakerZIP({}, ['darwin']), + new MakerRpm({}), + new MakerDeb({}), + ], plugins: [ new VitePlugin({ // `build` can specify multiple entry builds, which can be Main process, Preload scripts, Worker process, etc. diff --git a/index.html b/index.html index 8ef2253..4495dea 100644 --- a/index.html +++ b/index.html @@ -5,7 +5,10 @@