Add prettier configuration and dev dependencies

This commit is contained in:
Max Schmidt
2023-06-18 19:45:41 +02:00
parent 5c78039be0
commit bd48dcdef6
3 changed files with 20 additions and 0 deletions

11
astro/.prettierrc Normal file
View File

@ -0,0 +1,11 @@
{
"plugins": ["prettier-plugin-astro", "prettier-plugin-tailwindcss"],
"overrides": [
{
"files": "*.astro",
"options": {
"parser": "astro"
}
}
]
}