fix: title generation + ai sdk upgrade (#1392)

This commit is contained in:
josh 2026-01-15 16:06:42 +00:00 committed by GitHub
parent f19d3d4071
commit 9d5d8a3ea7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
38 changed files with 1422 additions and 2360 deletions

View file

@ -1,9 +1,23 @@
{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"extends": ["ultracite"],
"extends": [
"ultracite/biome/core",
"ultracite/biome/next",
"ultracite/biome/react"
],
"formatter": {
"indentStyle": "space",
"indentWidth": 2
},
"files": {
"includes": [
"**/*",
"**/*.ts",
"**/*.tsx",
"**/*.js",
"**/*.jsx",
"!node_modules",
"!.next",
"!ai-sdk",
"!components/ui",
"!lib/utils.ts",
"!hooks/use-mobile.ts"
@ -12,39 +26,34 @@
"linter": {
"rules": {
"suspicious": {
/* Needs more work to fix */
"noExplicitAny": "off",
/* Allow for Tailwind @ rules */
"noUnknownAtRules": "off",
/* Allowing console for debugging */
"noConsole": "off",
/* Needed for generateUUID() */
"noBitwiseOperators": "off"
},
"style": {
/* Allowing magic numbers */
"noMagicNumbers": "off",
/* Needs more work to fix */
"noNestedTernary": "off"
"noNestedTernary": "off",
"useConsistentTypeDefinitions": "off"
},
"nursery": {
/* Too many false positives */
"noUnnecessaryConditions": "off"
"noUnnecessaryConditions": "off",
"useSortedClasses": "off"
},
"complexity": {
/* Needs more work to fix */
"noExcessiveCognitiveComplexity": "off",
/* This one has false positives. It's a bit... iffy 😉 */
"useSimplifiedLogicExpression": "off"
},
"a11y": {
/* Needs more work to fix */
"noSvgWithoutTitle": "off"
},
"correctness": {
"useUniqueElementIds": "off",
"useImageSize": "off"
},
"performance": {
"noBarrelFile": "off",
"useTopLevelRegex": "off"
}
}
}