summaryrefslogtreecommitdiff
path: root/.vscode/settings.json
blob: f3e8d01d2fe0aad014503d6b84cfa97335ec604a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
	"[javascript]": { "editor.defaultFormatter": "biomejs.biome" },
	"[typescript]": { "editor.defaultFormatter": "biomejs.biome" },
	"[javascriptreact]": { "editor.defaultFormatter": "biomejs.biome" },
	"[typescriptreact]": { "editor.defaultFormatter": "biomejs.biome" },
	"[json]": { "editor.defaultFormatter": "biomejs.biome" },
	"[jsonc]": { "editor.defaultFormatter": "biomejs.biome" },
	"[astro]": { "editor.defaultFormatter": "astro-build.astro-vscode" },
	"[markdown]": { "editor.wordWrap": "on" },
	"editor.formatOnSave": true,
	"editor.codeActionsOnSave": {
		"quickFix.biome": "explicit",
		"source.fixAll.biome": "explicit",
		"source.organizeImports": "never",
		"source.organizeImports.biome": "explicit"
	},
	"typescript.tsdk": "node_modules/typescript/lib",
	"astro.content-intellisense": true,
	"files.associations": {
		"*.css": "tailwindcss"
	},
	"tailwindCSS.experimental.configFile": "./src/styles/global.css"
}