mirror of
https://github.com/vercel/streamdown.git
synced 2026-09-19 02:18:37 +08:00
606209d10c
* Display fallback html * Rebuild code blocks on codeToTokens * Remove unused code * Fix flashing during re-rendering * Remove useRef * Switch back to JS Regex engine * Create single highlighter * Create container * Restore singleton cache for highlighters * Update static.tsx * Fix tests * Reapply memoization, consolidate effects, etc. * Remove Static Code Block * Run Ultracite * Fix rendering flashes * Add token highlight cache * Update settings.json * Create flat-gifts-fix.md
36 lines
906 B
JSON
36 lines
906 B
JSON
{
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"[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"
|
|
},
|
|
"[css]": {
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
},
|
|
"[graphql]": {
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
},
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnPaste": true,
|
|
"emmet.showExpandedAbbreviation": "never",
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.biome": "explicit",
|
|
"source.organizeImports.biome": "explicit"
|
|
}
|
|
}
|