mirror of
https://github.com/Lissy93/awesome-privacy.git
synced 2026-03-11 08:55:33 +00:00
22 lines
364 B
Text
22 lines
364 B
Text
{
|
|
"useTabs": true,
|
|
"singleQuote": true,
|
|
"semi": true,
|
|
"trailingComma": "all",
|
|
"plugins": ["prettier-plugin-astro", "prettier-plugin-svelte"],
|
|
"overrides": [
|
|
{
|
|
"files": "*.astro",
|
|
"options": {
|
|
"parser": "astro"
|
|
}
|
|
},
|
|
{
|
|
"files": ["*.ts", "*.js", "*.svelte", "*.scss"],
|
|
"options": {
|
|
"useTabs": false,
|
|
"tabWidth": 2
|
|
}
|
|
}
|
|
]
|
|
}
|