aboutsummaryrefslogtreecommitdiffstats
path: root/.prettierrc
blob: 7ebb855b9477e546f0acea1f628fc5d65ce916d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
	"useTabs": true,
	"singleQuote": true,
	"trailingComma": "none",
	"printWidth": 100,
	"plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"],
	"overrides": [
		{
			"files": "*.svelte",
			"options": {
				"parser": "svelte"
			}
		}
	]
}