rewrite website
All checks were successful
deploy / build-and-deploy (push) Successful in 13s

This commit is contained in:
2025-10-13 17:22:49 +02:00
parent a6d910f56a
commit ce01746dd7
263 changed files with 17905 additions and 14451 deletions

25
.prettierrc.mjs Normal file
View File

@@ -0,0 +1,25 @@
// @ts-check
/** @type {import("prettier").Config} */
export default {
useTabs: false,
singleQuote: true,
trailingComma: 'none',
tabWidth: 2,
printWidth: 120,
plugins: ['prettier-plugin-astro', 'prettier-plugin-svelte'],
overrides: [
{
files: '*.svelte',
options: {
parser: 'svelte'
}
},
{
files: '*.astro',
options: {
parser: 'astro'
}
}
]
};