blob: 8103a0b5d2a378f217fbccd9b7aea0cb35bddab0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{
"useTabs": true,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 100,
"plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"],
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
],
"tailwindStylesheet": "./src/app.css"
}
|