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
+5 -1
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"
]
} }
+4 -4
View File
@@ -1,12 +1,12 @@
// @ts-check // @ts-check
// @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 // https://astro.build/config
export default defineConfig({ export default defineConfig({
integrations: [svelte(), tailwind()] integrations: [svelte(), tailwind()],
}); });
+1
View File
@@ -6,6 +6,7 @@
"dev": "astro dev", "dev": "astro dev",
"build": "astro check && astro build", "build": "astro check && astro build",
"preview": "astro preview", "preview": "astro preview",
"format": "prettier --write .",
"astro": "astro" "astro": "astro"
}, },
"dependencies": { "dependencies": {
+3061 -1434
View File
File diff suppressed because it is too large Load Diff
+3 -3
View File
@@ -1,5 +1,5 @@
import { vitePreprocess } from '@astrojs/svelte'; import { vitePreprocess } from "@astrojs/svelte";
export default { export default {
preprocess: vitePreprocess(), preprocess: vitePreprocess(),
} };
+6 -6
View File
@@ -1,8 +1,8 @@
/** @type {import('tailwindcss').Config} */ /** @type {import('tailwindcss').Config} */
export default { 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: { theme: {
extend: {}, extend: {},
}, },
plugins: [], plugins: [],
} };
+2 -7
View File
@@ -7,11 +7,6 @@
"$lib/*": ["./src/*"] "$lib/*": ["./src/*"]
} }
}, },
"include": [ "include": [".astro/types.d.ts", "**/*"],
".astro/types.d.ts", "exclude": ["dist"]
"**/*"
],
"exclude": [
"dist"
]
} }