initial commit

This commit is contained in:
user
2025-12-07 16:07:03 +02:00
commit ec0ef01427
73 changed files with 5115 additions and 0 deletions

10
prettier.config.cjs Normal file
View File

@@ -0,0 +1,10 @@
/** @type {import("prettier").Config & { [key:string]: any }} */
module.exports = {
arrowParens: "always",
singleQuote: false,
jsxSingleQuote: false,
semi: true,
trailingComma: "all",
tabWidth: 4,
plugins: ["prettier-plugin-tailwindcss", "prettier-plugin-astro"],
};