mirror of
https://github.com/vercel/chat.git
synced 2026-09-14 18:32:29 +08:00
e970a6939b
* 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
30 lines
611 B
JSON
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"]
|
|
}
|
|
}
|