mirror of
https://github.com/kogakure/website-astro-stefanimhoff.de.git
synced 2026-02-03 12:05:28 +00:00
32 lines
519 B
JSON
32 lines
519 B
JSON
{
|
|
"plugins": [
|
|
"prettier-plugin-astro",
|
|
"prettier-plugin-astro-organize-imports",
|
|
"prettier-plugin-organize-imports",
|
|
"prettier-plugin-tailwindcss"
|
|
],
|
|
"endOfLine": "lf",
|
|
"semi": true,
|
|
"singleQuote": true,
|
|
"useTabs": true,
|
|
"tabWidth": 4,
|
|
"printWidth": 100,
|
|
"trailingComma": "es5",
|
|
"overrides": [
|
|
{
|
|
"files": ["*.md", "*.mdx"],
|
|
"options": {
|
|
"singleQuote": false,
|
|
"tabWidth": 2,
|
|
"useTabs": false
|
|
}
|
|
},
|
|
{
|
|
"files": "*.astro",
|
|
"options": {
|
|
"parser": "astro"
|
|
}
|
|
}
|
|
]
|
|
}
|