Files
vercel__chat/biome.jsonc
T
Hayden Bleasel e970a6939b Upgrade Biome configuration to use Ultracite preset (#81)
* Upgrade Biome to Ultracite

* Remove package commands

* Update biome.jsonc

* Update biome.jsonc

* Initial fixes

* Update biome.jsonc

* Remaining fixes

* Update pnpm-lock.yaml

* Fix commands

* Update knip.json

* Merge Claude files

* Fix skipped test

* Misc fixes
2026-02-20 22:01:10 -08:00

30 lines
611 B
JSON

{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"extends": [
"ultracite/biome/core",
"ultracite/biome/react",
"ultracite/biome/next"
],
"linter": {
"rules": {
"suspicious": {
"noEmptyBlockStatements": "off",
"useAwait": "off",
"noSkippedTests": "off"
},
"complexity": {
"noExcessiveCognitiveComplexity": "off"
},
"performance": {
"noBarrelFile": "off"
},
"style": {
"useNumericSeparators": "off"
}
}
},
"files": {
"includes": ["**/*", "!apps/docs"]
}
}