27 lines
742 B
JSON
27 lines
742 B
JSON
{
|
|
"editor.formatOnSave": false,
|
|
"svelte.enable-ts-plugin": true,
|
|
"tailwindCSS.classAttributes": ["class", ".+Class"],
|
|
"tailwindCSS.experimental.classRegex": [
|
|
["tv\\(([^)]*)\\)", "(?:'|\"|`)([^']*)(?:'|\"|`)"],
|
|
["cn\\(([^)]*)\\)", "(?:'|\"|`)([^']*)(?:'|\"|`)"]
|
|
],
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
},
|
|
"[svelte]": {
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
},
|
|
"[javascript]": {
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
},
|
|
"[json]": {
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
},
|
|
"[jsonc]": {
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
},
|
|
"biome.lspBin": "./node_modules/@biomejs/biome/bin/biome"
|
|
}
|