home/.prettierrc

15 lines
286 B
Plaintext
Raw Normal View History

2023-08-31 10:07:55 +02:00
{
"arrowParens": "avoid",
"tabWidth": 4,
2023-09-01 02:11:44 +02:00
"trailingComma": "none",
"plugins": ["prettier-plugin-astro"],
"overrides": [
{
"files": "*.astro",
"options": {
"parser": "astro"
}
}
]
2023-08-31 10:07:55 +02:00
}