Format everything

This commit is contained in:
2025-01-09 20:44:34 +01:00
parent f2ccb6b840
commit 81fb8beece
8 changed files with 3084 additions and 1457 deletions

View File

@@ -1,3 +1,7 @@
{
"plugins": ["prettier-plugin-astro","prettier-plugin-svelte","prettier-plugin-tailwindcss"]
"plugins": [
"prettier-plugin-astro",
"prettier-plugin-svelte",
"prettier-plugin-tailwindcss"
]
}

View File

@@ -1,12 +1,12 @@
// @ts-check
// @ts-check
import { defineConfig } from 'astro/config';
import { defineConfig } from "astro/config";
import svelte from '@astrojs/svelte';
import svelte from "@astrojs/svelte";
import tailwind from '@astrojs/tailwind';
import tailwind from "@astrojs/tailwind";
// https://astro.build/config
export default defineConfig({
integrations: [svelte(), tailwind()]
integrations: [svelte(), tailwind()],
});

View File

@@ -6,6 +6,7 @@
"dev": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"format": "prettier --write .",
"astro": "astro"
},
"dependencies": {

4435
frontend/pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,5 +1,5 @@
import { vitePreprocess } from '@astrojs/svelte';
import { vitePreprocess } from "@astrojs/svelte";
export default {
preprocess: vitePreprocess(),
}
};

View File

@@ -1,8 +1,8 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {},
},
plugins: [],
}
};

View File

@@ -7,11 +7,6 @@
"$lib/*": ["./src/*"]
}
},
"include": [
".astro/types.d.ts",
"**/*"
],
"exclude": [
"dist"
]
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"]
}