blog/.prettierrc.json

18 lines
265 B
JSON
Raw Normal View History

2023-08-31 03:47:22 +00:00
{
"plugins": ["prettier-plugin-astro"],
"overrides": [
{
"files": "*.astro",
"options": {
"parser": "astro"
}
}
],
"useTabs": false,
"tabWidth": 2,
"singleQuote": false,
"trailingComma": "all",
"printWidth": 100
}