Files
vercel__streamdown/biome.jsonc
T
Hayden Bleasel 62888665f8 Performance improvements, part 2 (#241)
* Add functional benchmarking suite

* Optimize regex performance

* Fix rendering issue with code blocks

* Fix bench commands

* Table optimizations

* Math Block Detection Caching

* Parse blocks optimizations

* More regex-to-loop optimizations

* Update layout.tsx

* Remove dependency on vfile

* Optimize string operations

* Create markdown.test.tsx

* Optimized cache key generation

* Fix display issue

* Add core Markdown parsing benchmarks

* Update section.tsx

* CSV / TSV escaping optimization

* More optimizations

* Run Ultracite

* Fix remaining lint issues
2025-11-21 17:45:53 -08:00

27 lines
592 B
JSON

{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"extends": ["ultracite/core", "ultracite/react", "ultracite/next"],
"files": {
"includes": [
"!**/components/ui",
"!**/components/ai-elements",
"!**/components/geistdocs",
"!**/lib/utils.ts",
"!**/hooks/use-mobile.ts",
"!**/__tests__/__fixtures__"
]
},
"overrides": [
{
"includes": ["**/__tests__/**/*.test.tsx"],
"linter": {
"rules": {
"correctness": {
"noChildrenProp": "off"
}
}
}
}
]
}