From 4a36d66a95ec99971d7c8c6798ba563f2a8e63dc Mon Sep 17 00:00:00 2001 From: Yuri Tatishchev Date: Wed, 4 Feb 2026 19:41:01 -0800 Subject: [PATCH] biome format --- src/app.d.ts | 14 +++++++------- src/routes/+layout.svelte | 4 ++-- svelte.config.js | 6 +++--- tsconfig.json | 4 +--- vite.config.ts | 6 +++--- 5 files changed, 16 insertions(+), 18 deletions(-) diff --git a/src/app.d.ts b/src/app.d.ts index 2fd17f5..3329955 100644 --- a/src/app.d.ts +++ b/src/app.d.ts @@ -2,12 +2,12 @@ // for information about these interfaces declare global { namespace App { - interface Platform { - env: Env - cf: CfProperties - ctx: ExecutionContext - } - } + interface Platform { + env: Env; + cf: CfProperties; + ctx: ExecutionContext; + } + } } -export {}; \ No newline at end of file +export {}; diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 0d8eb03..0a3c0fd 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -1,6 +1,6 @@ diff --git a/svelte.config.js b/svelte.config.js index 734728c..057c6d4 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -6,8 +6,8 @@ const config = { // adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list. // If your environment is not supported, or you settled on a specific environment, switch out the adapter. // See https://svelte.dev/docs/kit/adapters for more information about adapters. - adapter: adapter() - } + adapter: adapter(), + }, }; -export default config; \ No newline at end of file +export default config; diff --git a/tsconfig.json b/tsconfig.json index 8d111c8..0b78407 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -11,9 +11,7 @@ "sourceMap": true, "strict": true, "moduleResolution": "bundler", - "types": [ - "./src/worker-configuration.d.ts" - ] + "types": ["./src/worker-configuration.d.ts"] } // Path aliases are handled by https://svelte.dev/docs/kit/configuration#alias // except $lib which is handled by https://svelte.dev/docs/kit/configuration#files diff --git a/vite.config.ts b/vite.config.ts index 56f40c7..4b97347 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,5 +1,5 @@ -import tailwindcss from '@tailwindcss/vite'; -import { sveltekit } from '@sveltejs/kit/vite'; -import { defineConfig } from 'vite'; +import { sveltekit } from "@sveltejs/kit/vite"; +import tailwindcss from "@tailwindcss/vite"; +import { defineConfig } from "vite"; export default defineConfig({ plugins: [tailwindcss(), sveltekit()] });