Files
oki-podcast-reader/.prettierrc
T

18 lines
337 B
Plaintext
Raw Normal View History

2023-02-21 22:09:10 +00:00
{
2023-07-09 22:18:06 +01:00
"plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"],
2023-07-09 23:21:21 +01:00
"arrowParens": "always",
"bracketSpacing": true,
"bracketSameLine": false,
"semi": true,
"singleQuote": true,
"useTabs": true,
"tabWidth": 3,
"trailingComma": "all",
"overrides": [
{
"files": "*.svelte",
"options": { "parser": "svelte" }
}
]
2023-02-21 22:09:10 +00:00
}