This commit is contained in:
Norbert Maciaszek
2025-11-17 16:51:36 +01:00
commit 0e45ee04fc
18 changed files with 2484 additions and 0 deletions

19
.prettierrc Normal file
View File

@@ -0,0 +1,19 @@
{
"useTabs": true,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 100,
"plugins": [
"prettier-plugin-svelte",
"prettier-plugin-tailwindcss"
],
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
],
"tailwindStylesheet": "./src/app.css"
}