From 18d0ef1e76658cb43c285ae634163fe808e451cb Mon Sep 17 00:00:00 2001 From: Mikkel Svartveit Date: Sun, 15 Oct 2023 17:33:51 -0700 Subject: [PATCH] Format with Prettier --- .prettierignore | 4 ++++ astro.config.mjs | 4 ++-- svelte.config.js | 4 ++-- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.prettierignore b/.prettierignore index 82c78a5..dce42f0 100644 --- a/.prettierignore +++ b/.prettierignore @@ -6,3 +6,7 @@ dist/ # dependencies node_modules/ + +# Lock files +pnpm-lock.yaml +package-lock.json diff --git a/astro.config.mjs b/astro.config.mjs index 78fb7b0..0e47d21 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -5,5 +5,5 @@ import svelte from "@astrojs/svelte"; // https://astro.build/config export default defineConfig({ - integrations: [tailwind(), svelte()] -}); \ No newline at end of file + integrations: [tailwind(), svelte()], +}); diff --git a/svelte.config.js b/svelte.config.js index cbaee33..cf44f38 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -1,5 +1,5 @@ -import { vitePreprocess } from '@astrojs/svelte'; +import { vitePreprocess } from "@astrojs/svelte"; export default { - preprocess: vitePreprocess(), + preprocess: vitePreprocess(), };